Changeset 62681 in vbox for trunk/src/VBox/NetworkServices/NAT
- Timestamp:
- Jul 29, 2016 12:55:38 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109254
- Location:
- trunk/src/VBox/NetworkServices/NAT
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/RTWinPoll.cpp
r62679 r62681 26 26 #include <VBox/log.h> 27 27 28 #include < Winsock2.h>28 #include <iprt/win/winsock2.h> 29 29 #include <iprt/win/windows.h> 30 30 #include "winpoll.h" … … 55 55 continue; 56 56 57 /* *57 /* 58 58 * POLLIN Data other than high priority data may be read without blocking. 59 59 * This is equivalent to ( POLLRDNORM | POLLRDBAND ). … … 64 64 eventMask |= FD_READ | FD_ACCEPT; 65 65 66 /* *66 /* 67 67 * POLLOUT Normal data may be written without blocking. This is equivalent 68 68 * to POLLWRNORM. … … 72 72 eventMask |= FD_WRITE | FD_CONNECT; 73 73 74 /* *74 /* 75 75 * This is "moral" equivalent to POLLHUP. 76 76 */ -
trunk/src/VBox/NetworkServices/NAT/RTWinSocketPair.cpp
r62679 r62681 23 23 #include <VBox/err.h> 24 24 25 #include < Winsock2.h>25 #include <iprt/win/winsock2.h> 26 26 #include <iprt/win/windows.h> 27 27 -
trunk/src/VBox/NetworkServices/NAT/winutils.h
r62679 r62681 22 22 23 23 # ifdef RT_OS_WINDOWS 24 # include < WinSock2.h>24 # include <iprt/win/winsock2.h> 25 25 # include <ws2tcpip.h> 26 26 # include <mswsock.h>
Note:
See TracChangeset
for help on using the changeset viewer.