Changeset 25645 in vbox for trunk/src/VBox/Runtime/common/checksum
- Timestamp:
- Jan 5, 2010 9:29:31 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56352
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/ipv4.cpp
r21337 r25645 228 228 * 229 229 * @returns 32-bit intermediary checksum value. 230 * @param p UdpHdr Pointer to the TCP header to checksum, network endian (big).231 * Assums the caller has already validate it and made sure the232 * entire header is present.230 * @param pTcpHdr Pointer to the TCP header to checksum, network 231 * endian (big). Assums the caller has already validate 232 * it and made sure the entire header is present. 233 233 * @param u32Sum The 32-bit intermediate checksum value. 234 234 */ … … 274 274 * 275 275 * @returns 32-bit intermediary checksum value. 276 * @param p UdpHdr Pointer to the TCP header to checksum, network endian (big).277 * Assums the caller has already validate it and made sure the278 * entire header is present.276 * @param pTcpHdr Pointer to the TCP header to checksum, network 277 * endian (big). Assums the caller has already validate 278 * it and made sure the entire header is present. 279 279 * @param u32Sum The 32-bit intermediate checksum value. 280 280 */ … … 290 290 * 291 291 * @returns 32-bit intermediary checksum value. 292 * @param pUdpHdr Pointer to the UDP header to checksum, network endian (big). 292 * @param pvData Pointer to the data that should be checksummed. 293 * @param cbData The number of bytes to checksum. 293 294 * @param u32Sum The 32-bit intermediate checksum value. 294 295 * @param pfOdd This is used to keep track of odd bits, initialize to false … … 342 343 * 343 344 * @returns 32-bit intermediary checksum value. 344 * @param pUdpHdr Pointer to the UDP header to checksum, network endian (big). 345 * @param pvData The data bits to checksum. 346 * @param cbData The number of bytes to checksum. 345 347 * @param u32Sum The 32-bit intermediate checksum value. 346 348 * @param pfOdd This is used to keep track of odd bits, initialize to false
Note:
See TracChangeset
for help on using the changeset viewer.