Changeset 30270 in vbox for trunk/include/iprt/socket.h
- Timestamp:
- Jun 17, 2010 6:56:26 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62784
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/socket.h
r28800 r30270 31 31 #include <iprt/thread.h> 32 32 #include <iprt/net.h> 33 #include <iprt/sg.h> 33 34 34 35 #ifdef IN_RING0 … … 176 177 RTDECL(int) RTSocketGetPeerAddress(RTSOCKET hSocket, PRTNETADDR pAddr); 177 178 179 /** 180 * Send data from a scatter/gather buffer to a socket. 181 * 182 * @returns IPRT status code. 183 * @retval VERR_INTERRUPTED if interrupted before anything was written. 184 * 185 * @param hSocket The socket handle. 186 * @param pSgBuf Scatter/gather buffer to write data to socket. 187 */ 188 RTDECL(int) RTSocketSgWrite(RTSOCKET hSocket, PCRTSGBUF pSgBuf); 189 178 190 /** @} */ 179 191 RT_C_DECLS_END
Note:
See TracChangeset
for help on using the changeset viewer.