Home
last modified time | relevance | path

Searched refs:piperead (Results 1 – 2 of 2) sorted by relevance

/external/dnsmasq/contrib/lease-access/
Dlease.access.patch14 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/
Ddnsmasq.c71 int piperead, pipefd[2], err_pipe[2]; in main() local
251 piperead = pipefd[0]; in main()
533 FD_SET(piperead, &rset); in main()
534 bump_maxfd(piperead, &maxfd); in main()
577 if (FD_ISSET(piperead, &rset)) in main()
578 async_event(piperead, now); in main()