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

  /external/dnsmasq/src/
lease.c 34 daemon->dhcp_buff = safe_malloc(256);
48 strcpy(daemon->dhcp_buff, daemon->lease_change_command);
49 strcat(daemon->dhcp_buff, " init");
50 leasestream = popen(daemon->dhcp_buff, "r");
77 daemon->dhcp_buff, daemon->packet) == 5)
108 if (strcmp(daemon->dhcp_buff, "*") != 0)
109 lease_set_hostname(lease, daemon->dhcp_buff, 0);
133 sprintf(daemon->dhcp_buff, "%d", WEXITSTATUS(rc));
134 die(_("lease-init script returned exit code %s"), daemon->dhcp_buff, WEXITSTATUS(rc) + EC_INIT_OFFSET);
rfc2131.c 503 char *pq = daemon->dhcp_buff;
534 if (pq != daemon->dhcp_buff)
539 if (legal_hostname(daemon->dhcp_buff))
540 offer_hostname = client_hostname = daemon->dhcp_buff;
545 memcpy(daemon->dhcp_buff, option_ptr(opt, 0), len);
549 if (len > 0 && daemon->dhcp_buff[len-1] == 0)
552 daemon->dhcp_buff[len] = 0;
553 if (legal_hostname(daemon->dhcp_buff))
554 client_hostname = daemon->dhcp_buff;
839 sanitise(option_find(mess, sz, OPTION_MESSAGE, 1), daemon->dhcp_buff);
    [all...]
helper.c 130 /* stringify MAC into dhcp_buff */
131 p = daemon->dhcp_buff;
282 action_str, daemon->dhcp_buff, inet_ntoa(data.addr), hostname, (char*)NULL);
dhcp.c 383 strcpy(daemon->dhcp_buff, inet_ntoa(context->start));
386 daemon->dhcp_buff, daemon->dhcp_buff2, inet_ntoa(netmask));
974 hostname = daemon->dhcp_buff;
dnsmasq.c 512 strcpy(daemon->dhcp_buff, inet_ntoa(dhcp_tmp->start));
519 daemon->dhcp_buff, inet_ntoa(dhcp_tmp->end), daemon->dhcp_buff2);
    [all...]
dnsmasq.h 672 char *dhcp_buff, *dhcp_buff2; member in struct:daemon

Completed in 29 milliseconds