Searched defs:nFDs (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Network/
H A DDrvNAT.cpp754 int nFDs = -1; local
779 nFDs = slirp_get_nsock(pThis->pNATState);
781 struct pollfd *polls = (struct pollfd *)RTMemAlloc((1 + nFDs) * sizeof(struct pollfd) + sizeof(uint32_t));
786 slirp_select_fill(pThis->pNATState, &nFDs, &polls[1]);
793 int cChangedFDs = poll(polls, nFDs + 1, slirp_get_timeout_ms(pThis->pNATState));
811 slirp_select_poll(pThis->pNATState, &polls[1], nFDs);
836 nFDs = -1;
837 slirp_select_fill(pThis->pNATState, &nFDs);
838 DWORD dwEvent = WSAWaitForMultipleEvents(nFDs, phEvents, FALSE,
841 if ( (dwEvent < WSA_WAIT_EVENT_0 || dwEvent > WSA_WAIT_EVENT_0 + nFDs
[all...]

Completed in 46 milliseconds