Changeset 30309 in vbox for trunk/include
- Timestamp:
- Jun 18, 2010 12:25:12 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62857
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD.h
r30178 r30309 1060 1060 1061 1061 /** 1062 * Send data froma socket.1062 * Send data to a socket. 1063 1063 * 1064 1064 * @return iprt status code. … … 1066 1066 * @param pvBuffer Buffer to write data to socket. 1067 1067 * @param cbBuffer How much to write. 1068 * @param pcbRead Number of bytes read.1069 1068 */ 1070 1069 DECLR3CALLBACKMEMBER(int, pfnWrite, (RTSOCKET Sock, const void *pvBuffer, size_t cbBuffer)); 1071 1070 1072 1071 /** 1073 * Flush socket write buffers.1072 * Send data from scatter/gather buffer to a socket. 1074 1073 * 1075 1074 * @return iprt status code. 1076 1075 * @param Sock Socket descriptor. 1076 * @param pSgBuf Scatter/gather buffer to write data to socket. 1077 */ 1078 DECLR3CALLBACKMEMBER(int, pfnSgWrite, (RTSOCKET Sock, PCRTSGBUF pSgBuf)); 1079 1080 /** 1081 * Flush socket write buffers. 1082 * 1083 * @return iprt status code. 1084 * @param Sock Socket descriptor. 1077 1085 */ 1078 1086 DECLR3CALLBACKMEMBER(int, pfnFlush, (RTSOCKET Sock)); 1087 1088 /** 1089 * Enables or disables delaying sends to coalesce packets. 1090 * 1091 * @return iprt status code. 1092 * @param Sock Socket descriptor. 1093 * @param fEnable When set to true enables coalescing. 1094 */ 1095 DECLR3CALLBACKMEMBER(int, pfnSetSendCoalescing, (RTSOCKET Sock, bool fEnable)); 1079 1096 1080 1097 /**
Note:
See TracChangeset
for help on using the changeset viewer.