HomeSort by relevance Sort by last modified time
    Searched refs:dhcpfd (Results 1 - 4 of 4) sorted by null

  /external/dnsmasq/src/
dhcp.c 84 daemon->dhcpfd = fd;
124 while ((sz = recvmsg(daemon->dhcpfd, &msg, MSG_PEEK | MSG_TRUNC)) == -1 && errno == EINTR);
154 while ((sz = recvmsg(daemon->dhcpfd, &msg, 0)) == -1 && errno == EINTR);
170 if (!indextoname(daemon->dhcpfd, iface_index, ifr.ifr_name))
180 if (ioctl(daemon->dhcpfd, SIOCGIFADDR, &ifr) != -1 )
196 if (ioctl(daemon->dhcpfd, SIOCGIFADDR, &ifr) == -1)
288 ioctl(daemon->dhcpfd, SIOCSARP, &req);
292 while(sendmsg(daemon->dhcpfd, &msg, 0) == -1 && retry_send());
helper.c 355 if (ioctl(daemon->dhcpfd, SIOCGIFNAME, &ifr) != -1)
dnsmasq.c 540 FD_SET(daemon->dhcpfd, &rset);
541 bump_maxfd(daemon->dhcpfd, &maxfd);
609 if (daemon->dhcp && FD_ISSET(daemon->dhcpfd, &rset))
dnsmasq.h 639 int dhcpfd, helperfd; member in struct:daemon

Completed in 57 milliseconds