File: sockets.h

package info (click to toggle)
concurrentqueue 1.0.4%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,656 kB
  • sloc: cpp: 37,309; makefile: 99; ansic: 67; python: 46; sh: 11
file content (20 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2003  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.
#ifndef DLIB_SOCKETs_
#define DLIB_SOCKETs_

#include "platform.h"


#ifdef WIN32
#include "sockets/windows.h"
#endif

#ifndef WIN32
#include "sockets/posix.h"
#endif

#include "sockets/sockets_extensions.h"

#endif // DLIB_SOCKETs_