Changeset 940 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Feb 15, 2007 9:04:21 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18675
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/tcp.cpp
r932 r940 137 137 * @returns iprt status code. 138 138 */ 139 inline intrtTcpError(void)139 DECLINLINE(int) rtTcpError(void) 140 140 { 141 141 #ifdef __WIN__ … … 153 153 * @param Sock The new value. 154 154 */ 155 inline RTSOCKETrtTcpAtomicXchgSock(RTSOCKET volatile *pSock, const RTSOCKET Sock)155 DECLINLINE(RTSOCKET) rtTcpAtomicXchgSock(RTSOCKET volatile *pSock, const RTSOCKET Sock) 156 156 { 157 157 switch (sizeof(RTSOCKET)) … … 168 168 * Changes the TCP server state. 169 169 */ 170 inline boolrtTcpServerSetState(PRTTCPSERVER pServer, RTTCPSERVERSTATE enmStateNew, RTTCPSERVERSTATE enmStateOld)170 DECLINLINE(bool) rtTcpServerSetState(PRTTCPSERVER pServer, RTTCPSERVERSTATE enmStateNew, RTTCPSERVERSTATE enmStateOld) 171 171 { 172 172 bool fRc; … … 441 441 RTSOCKET Sock = rtTcpAtomicXchgSock(pSock, NIL_RTSOCKET); 442 442 if (Sock != NIL_RTSOCKET) 443 { 444 shutdown(Sock, SHUT_RDWR); 445 } 443 shutdown(Sock, SHUT_RDWR); 446 444 return rtTcpClose(Sock, pszMsg); 447 445 }
Note:
See TracChangeset
for help on using the changeset viewer.