Changeset 50192 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jan 23, 2014 5:14:52 PM (11 years ago)
- Location:
- trunk/src/VBox/Devices/Network/lwip-new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip-new/CHANGELOG
r50189 r50192 84 84 85 85 ++ Bugfixes: 86 87 2014-01-18: Brian Fahs 88 * tcp_out.c: patch #8237: tcp_rexmit_rto fails to update pcb->unsent_oversize 89 when necessary 86 90 87 91 2014-01-17: Grant Erickson, Jay Logue, Simon Goldschmidt -
trunk/src/VBox/Devices/Network/lwip-new/src/core/tcp_out.c
r50027 r50192 1263 1263 /* concatenate unsent queue after unacked queue */ 1264 1264 seg->next = pcb->unsent; 1265 #if TCP_OVERSIZE && TCP_OVERSIZE_DBGCHECK 1266 /* if last unsent changed, we need to update unsent_oversize */ 1267 if (pcb->unsent == NULL) { 1268 pcb->unsent_oversize = seg->oversize_left; 1269 } 1270 #endif /* TCP_OVERSIZE && TCP_OVERSIZE_DBGCHECK*/ 1265 1271 /* unsent queue is the concatenated queue (of unacked, unsent) */ 1266 1272 pcb->unsent = pcb->unacked; 1267 1273 /* unacked queue is now empty */ 1268 1274 pcb->unacked = NULL; 1269 /* last unsent hasn't changed, no need to reset unsent_oversize */1270 1275 1271 1276 /* increment number of retransmissions */
Note:
See TracChangeset
for help on using the changeset viewer.