1 // Copyright (C) 2003  Davis E. King (davis@dlib.net)
2 // License: Boost Software License   See LICENSE.txt for the full license.
3 #ifndef DLIB_SOCKETs_
4 #define DLIB_SOCKETs_
5 
6 #include "platform.h"
7 
8 
9 #ifdef WIN32
10 #include "sockets/windows.h"
11 #endif
12 
13 #ifndef WIN32
14 #include "sockets/posix.h"
15 #endif
16 
17 #include "sockets/sockets_extensions.h"
18 
19 #endif // DLIB_SOCKETs_
20 
21