]> git.sesse.net Git - cubemap/blob - sa_compare.h
Install the systemd service without obeying PREFIX.
[cubemap] / sa_compare.h
1 #ifndef _SA_COMPARE_H
2 #define _SA_COMPARE_H
3
4 #include <netinet/in.h>
5
6 // A utility functor to help use sockaddr_in6 as keys in a map.
7 struct Sockaddr6Compare {
8         bool operator() (const sockaddr_in6 &a, const sockaddr_in6 &b) const;
9 };
10
11 #endif  // !defined(_SA_COMPARE_H)