| /src/external/mpl/dhcp/dist/tests/ |
| t_api_dhcp.c | 5 * DHCP program. 16 dhcp(struct packet *packet) { function
|
| /src/usr.bin/rump_dhcpclient/ |
| main.c | 46 #include "dhcp.h" 95 struct dhcp_message *dhcp; local 102 mlen = make_message(&dhcp, ifp, DHCP_DISCOVER); 103 ulen = make_udp_packet(&udp, (void *)dhcp, mlen, ia, ia); 111 struct dhcp_message *dhcp; local 118 mlen = make_message(&dhcp, ifp, DHCP_REQUEST); 119 ulen = make_udp_packet(&udp, (void *)dhcp, mlen, ia, ia); 131 const struct dhcp_message *dhcp; local 160 if ((size_t)n > sizeof(*dhcp)) { 164 dhcp = (const void *)data 189 const struct dhcp_message *dhcp; local 215 const struct dhcp_message *dhcp; local [all...] |
| configure.c | 2 * dhcpcd - DHCP client daemon 46 #include "dhcp.h" 185 get_subnet_route(struct dhcp_message *dhcp) 191 addr = dhcp->yiaddr; 193 addr = dhcp->ciaddr; 195 if (get_option_addr(&net, dhcp, DHO_SUBNETMASK) == -1) 254 /* Some DHCP servers add set host routes by setting the gateway 418 struct dhcp_message *dhcp = iface->state->new; local 449 rt = get_subnet_route(dhcp);
|
| net.c | 2 * dhcpcd - DHCP client daemon 65 #include "dhcp.h" 207 /* Ensure that the MTU is big enough for DHCP */ 372 struct dhcp_message dhcp; member in struct:udp_dhcp_packet 420 memcpy(&udpp->dhcp, data, length); 452 *data = udp + offsetof(struct udp_dhcp_packet, dhcp);
|
| dhcp.c | 2 * dhcpcd - DHCP client daemon 36 #include "dhcp.h" 208 #define get_option_raw(dhcp, opt) get_option(dhcp, opt, NULL, NULL) 210 get_option(const struct dhcp_message *dhcp, uint8_t opt, int *len, int *type) 212 const uint8_t *p = dhcp->options; 213 const uint8_t *e = p + sizeof(dhcp->options); 226 opt_buffer = xmalloc(sizeof(*dhcp)); 247 p = dhcp->bootfile; 248 e = p + sizeof(dhcp->bootfile) 537 struct dhcp_message *dhcp; local [all...] |
| /src/external/mpl/dhcp/dist/dhcpctl/ |
| cltest.c | 57 void dhcp (struct packet *packet) { } function 90 dhcp,
|
| cltest2.c | 132 status = dhcpctl_set_string_value (host, "abcdefg", "dhcp-client-identifier"); 290 void dhcp (struct packet *packet) { } function
|
| omshell.c | 55 dhcp, 74 void dhcp (struct packet *packet) { } function
|
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| omr-watcher.h | 51 bool user, ncp, stable, onmesh, slaac, dhcp, preferred; member in struct:omr_prefix
|
| /src/external/bsd/wpa/dist/src/ap/ |
| fils_hlp.c | 13 #include "common/dhcp.h" 40 struct dhcp_data *dhcp; local 55 dhcp = (struct dhcp_data *) pos; 56 pos = (u8 *) (dhcp + 1); 91 sta->hlp_dhcp_discover->used = pos - (u8 *) dhcp; 136 wpa_printf(MSG_ERROR, "FILS: DHCP sendto failed: %s", 141 "FILS: Acting as DHCP rapid commit proxy for %s:%d", 155 struct dhcp_data *dhcp; local 171 wpa_printf(MSG_DEBUG, "FILS: DHCP read failed: %s", 175 wpa_printf(MSG_DEBUG, "FILS: DHCP response from server %s:%d (len=%d)" 329 const struct dhcp_data *dhcp; local [all...] |
| /src/external/mpl/dhcp/dist/relay/ |
| dhcrelay.c | 5 DHCP/BOOTP Relay Agent. */ 144 dhcp, 177 "Internet Systems Consortium DHCP Relay Agent"; 179 "For info, please visit https://www.isc.org/software/dhcp/"; 779 /* Set up the initial dhcp option universe. */ 1037 /* Strip any Relay Agent Information options from the DHCP packet 1074 /* If we see a message type, it's a DHCP packet. */ 1088 packet before we've seen the DHCP packet type, 1137 /* If it's not a DHCP packet, we're not supposed to touch it. */ 1292 /* If we see a message type, it's a DHCP packet. * 2117 dhcp(struct packet *packet) { function [all...] |
| /src/external/mpl/dhcp/dist/keama/ |
| confparse.c | 111 /* Add head config file comments to the DHCP server map */ 117 struct element *dhcp; local 129 dhcp = createMap(); 130 dhcp->kind = ROOT_GROUP; 132 TAILQ_CONCAT(&dhcp->comments, &cfile->comments); 133 stackPush(cfile, dhcp); 138 mapSet(top, dhcp, "Dhcp4"); 140 mapSet(top, dhcp, "Dhcp6"); 185 comment = createComment("/// Use ISC DHCP default lifetime"); 196 comment = createComment("/// Use ISC DHCP min lifetime") [all...] |
| /src/external/mpl/dhcp/dist/server/ |
| dhcp.c | 1 /* $NetBSD: dhcp.c,v 1.4 2022/04/03 01:10:59 christos Exp $ */ 3 /* dhcp.c 5 DHCP Protocol engine. */ 32 __RCSID("$NetBSD: dhcp.c,v 1.4 2022/04/03 01:10:59 christos Exp $"); 102 dhcp (struct packet *packet) { function 1246 log_info("If this DHCP server is authoritative for%s", 1531 /* Put in DHCP-specific options. */ 1771 * \brief Constructs and sends a DHCP Nak 1773 * In order to populate options such as dhcp-server-id and 1774 * dhcp-client-identifier, the function creates a temporary option cach [all...] |
| /src/external/mpl/dhcp/dist/client/ |
| dhclient.c | 5 DHCP Client. */ 89 static const char message [] = "Internet Systems Consortium DHCP Client"; 90 static const char url [] = "For info, please visit https://www.isc.org/software/dhcp/"; 126 dhcp, 688 /* Set up the initial dhcp option universe. */ 1236 * been sent to us by DHCP servers. 1238 * sent to us by DHCP servers. 1239 * sendpacket: DHCP packet we're trying to send. 1770 // we lose DHCP service again. 1926 void dhcp (packet function [all...] |
| /src/external/mpl/dhcp/dist/includes/ |
| dhcpd.h | 96 #include "dhcp.h" 191 /* We have user reports of use of ISC DHCP numbering leases in the 200k's. 406 /* A dhcp packet and the pointers to its option values. */ 448 dhcp-requested-address option. */ 557 /* A dhcp lease declaration structure. */ 971 /* A dhcp host declaration structure. */ 1140 /* DHCP client lease structure... */ 1148 struct auth_key *key; /* Key used in basic DHCP authentication. */ 1291 /* Per-interface state used in the dhcp client... */ 1320 struct dhcp_packet packet; /* Outgoing DHCP packet. * 3910 void (*dhcp) (struct packet *); member in struct:libdhcp_callbacks [all...] |