Changeset 53540 in vbox for trunk/src/VBox
- Timestamp:
- Dec 14, 2014 10:01:46 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MediumImpl.cpp
r53354 r53540 6526 6526 } 6527 6527 6528 DECLCALLBACK(int) Medium::i_vdTcpClientConnect(VDSOCKET Sock, const char *pszAddress, uint32_t uPort) 6528 DECLCALLBACK(int) Medium::i_vdTcpClientConnect(VDSOCKET Sock, const char *pszAddress, uint32_t uPort, 6529 RTMSINTERVAL cMillies) 6529 6530 { 6530 6531 PVDSOCKETINT pSocketInt = (PVDSOCKETINT)Sock; 6531 6532 6532 return RTTcpClientConnect (pszAddress, uPort, &pSocketInt->hSocket);6533 return RTTcpClientConnectEx(pszAddress, uPort, &pSocketInt->hSocket, cMillies, NULL); 6533 6534 } 6534 6535
Note:
See TracChangeset
for help on using the changeset viewer.