Changeset 15223 in vbox for trunk/src/VBox/Devices/Network/slirp
- Timestamp:
- Dec 10, 2008 3:45:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp.c
r15221 r15223 83 83 84 84 # define DO_CHECK_FD_SET(so, events, fdset) \ 85 (((events).lNetworkEvents & fdset ## _win) && ((event ).iErrorCode[fdset ## _win_bit] == 0))85 (((events).lNetworkEvents & fdset ## _win) && ((events).iErrorCode[fdset ## _win_bit] == 0)) 86 86 87 87 … … 722 722 continue; 723 723 724 POLL_TCP_EVENTS(rc, error, so, NetworkEvents);724 POLL_TCP_EVENTS(rc, error, so, &NetworkEvents); 725 725 726 726 /* … … 889 889 so_next = so->so_next; 890 890 891 POLL_UDP_EVENTS(rc, error, so, NetworkEvents);891 POLL_UDP_EVENTS(rc, error, so, &NetworkEvents); 892 892 893 893 if (so->s != -1 && CHECK_FD_SET(so, NetworkEvents, readfds))
Note:
See TracChangeset
for help on using the changeset viewer.