projects
/
cubemap
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add a listen statement to listen on only specific IP addresses, in addition to the...
[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)