- Timestamp:
- Nov 24, 2008 2:49:18 PM (16 years ago)
- Location:
- trunk/src/VBox/Devices/Network/slirp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp_state.h
r14391 r14522 121 121 int tcp_reass_maxseg; 122 122 int tcp_reass_overflows; 123 struct tcpcbhead tcpcbhead;124 123 #endif /* VBOX_WITH_BSD_TCP_REASS */ 125 124 /* Stuff from tftp.c */ -
trunk/src/VBox/Devices/Network/slirp/tcp_subr.c
r14470 r14522 195 195 #ifndef VBOX_WITH_BSD_TCP_REASS 196 196 tp->seg_next = tp->seg_prev = ptr_to_u32(pData, (struct tcpiphdr *)tp); 197 #else /* VBOX_WITH_BSD_TCP_REASS */ 198 LIST_INSERT_HEAD(&pData->tcpcbhead, tp, t_list); 199 #endif /* VBOX_WITH_BSD_TCP_REASS */ 197 #endif /* !VBOX_WITH_BSD_TCP_REASS */ 200 198 tp->t_maxseg = tcp_mssdflt; 201 199
Note:
See TracChangeset
for help on using the changeset viewer.