Changeset 36966 in vbox for trunk/src/VBox
- Timestamp:
- May 5, 2011 3:27:58 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/ip_output.c
r36965 r36966 282 282 send_or_free: 283 283 { 284 /* We're aliasing all fragments */ 284 /* @todo: We can't alias all fragments because the way libalias processing 285 * the fragments brake the sequence. libalias put alias_address to the source 286 * address of IP header of fragment, while IP header of the first packet is 287 * is unmodified. That confuses guest's TCP/IP stack and guest drop the sequence. 288 * Here we're letting libalias to process the first packet and send the rest as is, 289 * it's exactly the way in of packet are processing in proxyonly way. 290 * Here we need investigate what should be done to avoid such behavior and find right 291 * solution. 292 */ 285 293 struct m_tag *t; 286 294 int rcLa;
Note:
See TracChangeset
for help on using the changeset viewer.