Changeset 14285 in vbox for trunk/src/VBox
- Timestamp:
- Nov 18, 2008 10:44:50 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39463
- Location:
- trunk/src/VBox/Devices/Network/slirp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp_state.h
r14275 r14285 121 121 int tcp_reass_maxseg; 122 122 int tcp_reass_overflows; 123 struct tcpcbhead tcpcbhead; 123 124 #endif /* VBOX_WITH_BSD_TCP_REASS */ 124 125 /* Stuff from tftp.c */ -
trunk/src/VBox/Devices/Network/slirp/tcp_subr.c
r14275 r14285 192 192 tp->seg_next = tp->seg_prev = ptr_to_u32(pData, (struct tcpiphdr *)tp); 193 193 #else /* !VBOX_WITH_BSD_TCP_REASS */ 194 /*XXX: inject initialization here*/194 LIST_INSERT_HEAD(&pData->tcpcbhead, tp, t_list); 195 195 #endif /* VBOX_WITH_BSD_TCP_REASS */ 196 196 tp->t_maxseg = tcp_mssdflt; … … 264 264 register struct mbuf *m; 265 265 266 #ifndef VBOX_WITH_BSD_TCP_REASS 266 267 DEBUG_CALL("tcp_close"); 267 268 DEBUG_ARG("tp = %lx", (long )tp); 268 269 269 #ifndef VBOX_WITH_BSD_TCP_REASS270 270 /* free the reassembly queue, if any */ 271 271 t = u32_to_ptr(pData, tp->seg_next, struct tcpiphdr *); … … 277 277 } 278 278 #else /* !VBOX_WITH_BSD_TCP_REASS */ 279 DEBUG_CALL("tcp_close"); 280 DEBUG_ARG("tp = %lx", (long )tp); 279 281 /*XXX: freeing the reassembly queue */ 280 282 #endif /* VBOX_WITH_BSD_TCP_REASS */
Note:
See TracChangeset
for help on using the changeset viewer.