| /src/usr.bin/rump_dhcpclient/ |
| dhcpcd.h | 106 char leasefile[PATH_MAX]; member in struct:interface
|
| /src/external/bsd/dhcpcd/dist/src/ |
| dhcp6.h | 215 char leasefile[sizeof(LEASEFILE6) + IF_NAMESIZE + (IF_SSIDLEN * 4) + 3]; member in struct:dhcp6_state
|
| dhcp.c | 1257 if (state->leasefile[0] == '\0') 1260 logdebugx("%s: reading lease: %s", ifp->name, state->leasefile); 1262 sbytes = dhcp_readfile(ifp->ctx, state->leasefile, (void **)bootp, 1266 logerr("%s: %s", ifp->name, state->leasefile); 2039 dhcp_unlink(ifp->ctx, state->leasefile); 2168 dhcp_unlink(ifp->ctx, state->leasefile); 2212 dhcp_unlink(ifp->ctx, state->leasefile); 2493 logdebugx("%s: writing lease: %s", ifp->name, state->leasefile); 2494 if (dhcp_writefile(ifp->ctx, state->leasefile, 0640, state->new, 2496 logerr("dhcp_writefile: %s", state->leasefile); [all...] |
| dhcp.h | 232 char leasefile[sizeof(LEASEFILE) + IF_NAMESIZE + (IF_SSIDLEN * 4)]; member in struct:dhcp_state
|
| dhcp6.c | 1814 dhcp_unlink(ifp->ctx, state->leasefile); 2721 if (state->leasefile[0] == '\0') 2724 logdebugx("%s: reading lease: %s", ifp->name, state->leasefile); 2725 bytes = dhcp_readfile(ifp->ctx, state->leasefile, (void **)&dhcp6, 2730 if (ifp->ctx->options & DHCPCD_DUMPLEASE || state->leasefile[0] == '\0') 2741 if (dhcp_filemtime(ifp->ctx, state->leasefile, &mtime) == -1) 2794 dhcp_unlink(ifp->ctx, state->leasefile); 2834 logerr("%s: %s", __func__, state->leasefile); 3360 state->leasefile); 3361 if (dhcp_writefile(ifp->ctx, state->leasefile, 0640 [all...] |
| dhcp-common.c | 1012 dhcp_set_leasefile(char *leasefile, size_t len, int family, 1019 strlcpy(leasefile, ifp->ctx->pidfile, len); 1043 return snprintf(leasefile, len, 1044 family == AF_INET ? LEASEFILE : LEASEFILE6, ifname, ssid);
|