Searched refs:selectval (Results 1 – 1 of 1) sorted by relevance
/external/mdnsresponder/mDNSShared/ |
D | dnsextd.c | 325 int selectval, n, nsent = 0; in MySend() local 338 selectval = select( fd+1, NULL, &wset, NULL, &timeout); in MySend() 339 if (selectval < 0) { LogErr("MySend", "select"); return -1; } in MySend() 340 if (!selectval || !FD_ISSET(fd, &wset)) { Log("MySend - timeout"); return -1; } in MySend() 377 int selectval, remaining = len; in my_recv() local 389 selectval = select(fd+1, &rset, NULL, NULL, &timeout); in my_recv() 390 if (selectval < 0) { LogErr("my_recv", "select"); return -1; } in my_recv() 391 if (!selectval || !FD_ISSET(fd, &rset)) in my_recv()
|