Changeset 39801 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Jan 18, 2012 6:01:11 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/socket.h
r32131 r39801 30 30 #include <iprt/cdefs.h> 31 31 #include <iprt/types.h> 32 #include <iprt/net.h> 32 33 /* Currently requires a bunch of socket headers. */ 33 34 … … 54 55 int rtSocketCreateForNative(RTSOCKETINT **ppSocket, RTSOCKETNATIVE hNative); 55 56 int rtSocketCreate(PRTSOCKET phSocket, int iDomain, int iType, int iProtocol); 56 int rtSocketBind(RTSOCKET hSocket, const struct sockaddr *pAddr, int cbAddr);57 int rtSocketBind(RTSOCKET hSocket, PCRTNETADDR pAddr); 57 58 int rtSocketListen(RTSOCKET hSocket, int cMaxPending); 58 59 int rtSocketAccept(RTSOCKET hSocket, PRTSOCKET phClient, struct sockaddr *pAddr, size_t *pcbAddr); 59 int rtSocketConnect(RTSOCKET hSocket, const struct sockaddr *pAddr, int cbAddr);60 int rtSocketConnect(RTSOCKET hSocket, PCRTNETADDR pAddr); 60 61 int rtSocketSetOpt(RTSOCKET hSocket, int iLevel, int iOption, void const *pvValue, int cbValue); 61 62 #endif /* IPRT_INTERNAL_SOCKET_POLLING_ONLY */
Note:
See TracChangeset
for help on using the changeset viewer.