Changeset 27759 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Mar 26, 2010 7:37:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/tcp.cpp
r27506 r27759 35 35 #ifdef RT_OS_WINDOWS 36 36 # include <winsock2.h> 37 #else /* !RT_OS_WINDOWS */ 37 #elif defined(RT_OS_FREEBSD) 38 # include <sys/types.h> 39 # include <sys/socket.h> 38 40 # include <errno.h> 39 41 # include <netinet/in.h> … … 41 43 # include <arpa/inet.h> 42 44 # include <netdb.h> 43 #endif /* !RT_OS_WINDOWS */ 45 #else /* !RT_OS_FREEBSD */ 46 # include <errno.h> 47 # include <netinet/in.h> 48 # include <netinet/tcp.h> 49 # include <arpa/inet.h> 50 # include <netdb.h> 51 #endif /* !RT_OS_FREEBSD */ 44 52 #include <limits.h> 45 53
Note:
See TracChangeset
for help on using the changeset viewer.