Changeset 49856 in vbox for trunk/src/VBox/NetworkServices
- Timestamp:
- Dec 10, 2013 1:47:06 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/winutils.h
r49707 r49856 99 99 100 100 /** 101 * http://msdn.microsoft.com/en-us/library/windows/desktop/ms740668(v=vs.85).aspx#WSAEHOSTDOWN102 * Corresponds to WSAEHOSTDOWN (10064) WSAGetLastError()101 * "Windows Sockets Error Codes" obtained with WSAGetLastError(). 102 * http://msdn.microsoft.com/en-us/library/windows/desktop/ms740668(v=vs.85).aspx 103 103 */ 104 # define EHOSTDOWN WSAEHOSTDOWN 105 /** 106 * http://msdn.microsoft.com/en-us/library/windows/desktop/ms740668(v=vs.85).aspx#WSAEHOSTUNREACH 107 */ 108 # define EHOSTUNREAH WSAEHOSTUNREACH 104 # undef EMSGSIZE 105 # define EMSGSIZE WSAEMSGSIZE 106 # undef ENETDOWN 107 # define ENETDOWN WSAENETDOWN 108 # undef ENETUNREACH 109 # define ENETUNREACH WSAENETUNREACH 110 # undef EHOSTDOWN 111 # define EHOSTDOWN WSAEHOSTDOWN 112 # undef EHOSTUNREACH 113 # define EHOSTUNREACH WSAEHOSTUNREACH 109 114 110 115 /**
Note:
See TracChangeset
for help on using the changeset viewer.