Changeset 14229 in vbox for trunk/src/VBox/Devices/Network/slirp/ip.h
- Timestamp:
- Nov 16, 2008 7:31:00 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/ip.h
r14228 r14229 246 246 #ifndef VBOX_WITH_BSD_REASS 247 247 ipqp_32 next,prev; /* to other reass headers */ 248 #else 248 #else /* !VBOX_WITH_BSD_REASS */ 249 249 TAILQ_ENTRY(ipq_t) ipq_list; 250 #endif 250 #endif /* VBOX_WITH_BSD_REASS */ 251 251 u_int8_t ipq_ttl; /* time for reass q to live */ 252 252 u_int8_t ipq_p; /* protocol of this fragment */ … … 254 254 #ifndef VBOX_WITH_BSD_REASS 255 255 ipasfragp_32 ipq_next,ipq_prev; /* to ip headers of fragments */ 256 #else 256 #else /* !VBOX_WITH_BSD_REASS */ 257 257 struct mbuf *ipq_frags; /* to ip headers of fragments */ 258 #endif 258 #endif /* VBOX_WITH_BSD_REASS */ 259 259 260 260 struct in_addr ipq_src,ipq_dst;
Note:
See TracChangeset
for help on using the changeset viewer.