Searched refs:piperead (Results 1 – 2 of 2) sorted by relevance
/external/dnsmasq/contrib/lease-access/ |
D | lease.access.patch | 14 piperead = pipefd[0]; 69 if (FD_ISSET(piperead, &rset)) 70 - async_event(piperead, now); 71 + async_event(piperead, now, NULL, 0); 80 + dhcp_packet(piperead, now); 187 +void dhcp_packet(int piperead, time_t now); 274 +void dhcp_packet(int piperead, time_t now) 284 + iov.iov_len = dhcp_reply(piperead, parm.current, ifr.ifr_name, iface_index, (size_t)sz, 415 +static int check_access_script( int piperead, struct dhcp_lease *lease, struct dhcp_packet *mess, … 444 + ret = async_event( piperead, now, &ev, SCRIPT_TIMEOUT); [all …]
|
/external/dnsmasq/src/ |
D | dnsmasq.c | 78 int piperead, pipefd[2], err_pipe[2]; in main() local 276 piperead = pipefd[0]; in main() 618 FD_SET(piperead, &rset); in main() 619 bump_maxfd(piperead, &maxfd); in main() 662 if (FD_ISSET(piperead, &rset)) in main() 663 async_event(piperead, now); in main()
|