Remote Call Framework 3.2
BsdSockets.hpp
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2020, Delta V Software. All rights reserved.
6 // http://www.deltavsoft.com
7 //
8 // RCF is distributed under dual licenses - closed source or GPL.
9 // Consult your particular license for conditions of use.
10 //
11 // If you have not purchased a commercial license, you are using RCF
12 // under GPL terms.
13 //
14 // Version: 3.2
15 // Contact: support <at> deltavsoft.com
16 //
17 //******************************************************************************
18 
19 #ifndef INCLUDE_UTIL_PLATFORM_OS_BSDSOCKETS_HPP
20 #define INCLUDE_UTIL_PLATFORM_OS_BSDSOCKETS_HPP
21 
22 #include <RCF/Config.hpp>
23 
24 #if defined(RCF_WINDOWS)
25 #include "Windows/BsdSockets.hpp"
26 #elif defined(__CYGWIN__)
27 #include "Unix/BsdSockets.hpp"
28 #elif defined(__unix__)
29 #include "Unix/BsdSockets.hpp"
30 #elif defined(__APPLE__)
31 #include "Unix/BsdSockets.hpp"
32 #else
33 #include "UnknownOS/BsdSockets.hpp"
34 #endif
35 
36 #endif // ! INCLUDE_UTIL_PLATFORM_OS_BSDSOCKETS_HPP