Changeset 16709 in vbox
- Timestamp:
- Feb 12, 2009 2:22:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp.c
r16653 r16709 1107 1107 && UNIX_CHECK_FD_SET(so, NetworkEvents, rderr)) 1108 1108 { 1109 if (so->so_state & SS_ISFCONNECTING) 1110 { 1109 if ( so->so_state & SS_ISFCONNECTING 1110 || (polls[poll_index].revents & POLLIN) != 0) 1111 { 1112 /** 1113 * Check if we need here take care about gracefull connection 1114 * @todo try with proxy server 1115 */ 1116 if ((polls[poll_index].revents & POLLIN) != 0) 1117 LogRel(("NAT: err happens on read I/O, other side close connection \n")); 1111 1118 so->so_state = SS_NOFDREF; 1112 1119 TCP_INPUT(pData, (struct mbuf *)NULL, sizeof(struct ip), so);
Note:
See TracChangeset
for help on using the changeset viewer.