Home | History | Annotate | Download | only in mDNSShared

Lines Matching defs:wset

326 	fd_set wset;
333 FD_ZERO(&wset);
337 FD_SET( fd, &wset );
338 selectval = select( fd+1, NULL, &wset, NULL, &timeout);
340 if (!selectval || !FD_ISSET(fd, &wset)) { Log("MySend - timeout"); return -1; }