Changeset 93040 in vbox
- Timestamp:
- Dec 21, 2021 11:14:56 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/ipv4.cpp
r82968 r93040 299 299 DECLINLINE(uint32_t) rtNetIPv4AddDataChecksum(void const *pvData, size_t cbData, uint32_t u32Sum, bool *pfOdd) 300 300 { 301 uint16_t const *pw = (uint16_t const *)pvData;302 301 if (*pfOdd) 303 302 { … … 317 316 318 317 /* iterate the data. */ 318 uint16_t const *pw = (uint16_t const *)pvData; 319 319 while (cbData > 1) 320 320 {
Note:
See TracChangeset
for help on using the changeset viewer.