OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:piperead
(Results
1 - 2
of
2
) sorted by null
/external/dnsmasq/contrib/lease-access/
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, time_t now)
444
+ ret = async_event(
piperead
, now, &ev, SCRIPT_TIMEOUT)
[
all
...]
/external/dnsmasq/src/
dnsmasq.c
78
int
piperead
, pipefd[2], err_pipe[2];
local
276
piperead
= pipefd[0];
618
FD_SET(
piperead
, &rset);
619
bump_maxfd(
piperead
, &maxfd);
662
if (FD_ISSET(
piperead
, &rset))
663
async_event(
piperead
, now);
[
all
...]
Completed in 1502 milliseconds