]> git.tdb.fi Git - libs/net.git/blob - source/net/constants.h
Implement an asynchronous name resolver class
[libs/net.git] / source / net / constants.h
1 #ifndef MSP_NET_CONSTANTS_H_
2 #define MSP_NET_CONSTANTS_H_
3
4 namespace Msp {
5 namespace Net {
6
7 enum Family
8 {
9         UNSPEC,
10         INET,
11         INET6,
12         UNIX
13 };
14
15 int family_to_sys(Family);
16 Family family_from_sys(int);
17
18 } // namespace Net
19 } // namespace Msp
20
21 #endif