Changeset 76957 in vbox
- Timestamp:
- Jan 23, 2019 5:18:20 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/pxtcp.c
r76553 r76957 219 219 struct tcpip_msg msg_outbound; /* trigger send of outbound data */ 220 220 struct tcpip_msg msg_inbound; /* trigger send of inbound data */ 221 #if HAVE_TCP_POLLHUP 221 222 struct tcpip_msg msg_inpull; /* trigger pull of last inbound data */ 223 #endif 222 224 }; 223 225 … … 265 267 static void pxtcp_pcb_write_outbound(void *); 266 268 static void pxtcp_pcb_write_inbound(void *); 269 #if HAVE_TCP_POLLHUP 267 270 static void pxtcp_pcb_pull_inbound(void *); 271 #endif 268 272 269 273 /* tcp pcb callbacks */ … … 635 639 CALLBACK_MSG(msg_outbound, pxtcp_pcb_write_outbound); 636 640 CALLBACK_MSG(msg_inbound, pxtcp_pcb_write_inbound); 641 #if HAVE_TCP_POLLHUP 637 642 CALLBACK_MSG(msg_inpull, pxtcp_pcb_pull_inbound); 643 #endif 638 644 639 645 #undef CALLBACK_MSG … … 2407 2413 2408 2414 2415 #if HAVE_TCP_POLLHUP 2409 2416 /** 2410 2417 * Callback from poll manager (pxtcp::msg_inpull) to switch … … 2440 2447 pxtcp_pcb_sent(pxtcp, pxtcp->pcb, 0); 2441 2448 } 2449 #endif /* HAVE_TCP_POLLHUP */ 2442 2450 2443 2451
Note:
See TracChangeset
for help on using the changeset viewer.