| /src/external/mpl/dhcp/dist/tests/DHCPv6/ |
| test-b.conf | 2 # Define the DHCPv6 option space. 5 # http://www.iana.org/assignments/dhcpv6-parameters 7 option dhcpv6.time-servers code 40 = array of ip6-address; 8 option dhcpv6.time-offset code 41 = signed integer 32; 22 option dhcpv6.time-servers 3ffe:bbbb:aaaa:aaaa::1, 3ffe:bbbb:aaaa:aaaa::2; 35 option dhcpv6.client-id 00:01:00:01:0c:00:a1:41:00:06:5b:50:99:f6; 38 option dhcpv6.time-servers 3ffe:aaaa:aaaa:aaaa::1, 42 option dhcpv6.time-offset -14400; # -4 hours 50 option dhcpv6.time-servers 3ffe:dddd:aaaa:aaaa::1, 54 option dhcpv6.time-offset -14400; # -4 hour [all...] |
| /src/external/mpl/dhcp/dist/tests/ |
| t_api_dhcp.c | 20 dhcpv6(struct packet *packet) { function
|
| t_api.c | 139 #ifdef DHCPv6 140 dhcpv6, 141 #endif /* DHCPv6 */
|
| /src/external/mpl/dhcp/dist/doc/examples/ |
| dhcpd-dhcpv6.conf | 1 # Server configuration file example for DHCPv6 46 dhcpv6-lease-file-name "/usr/local/var/db/dhcpd6.leases";
|
| /src/external/mpl/dhcp/bin/server/ |
| Makefile | 13 SRCS+= dhcpv6.c
|
| /src/external/mpl/dhcp/dist/ |
| Makefile.am | 21 doc/BIND-libraries doc/DHCPv4-over-DHCPv6 \ 27 doc/examples/dhclient-dhcpv6.conf doc/examples/dhcpd-dhcpv6.conf \
|
| configure | 1463 --enable-dhcpv6 enable support for DHCPv6 (default is yes) 1464 --enable-dhcpv4o6 enable support for DHCPv4-over-DHCPv6 (default is 5483 # DHCPv6 optional compile-time feature. 5484 # Check whether --enable-dhcpv6 was given. 5489 # DHCPv6 is on by default, so define if it is not explicitly disabled. 5493 $as_echo "#define DHCPv6 1" >>confdefs.h 5505 # DHCPv4o6 requires DHCPv6 5507 as_fn_error $? "dhcpv4o6 requires dhcpv6" "$LINENO" 5 9033 DHCP_VERSIONS="DHCPv4, DHCPv6 and DHCPv4-over-DHCPv6 [all...] |
| /src/external/mpl/dhcp/ |
| dhcp2netbsd | 70 for f in omapip/inet_addr.c omapip/iscprint.c server/dhcpv6.c \
|
| /src/external/mpl/dhcp/dist/dhcpctl/ |
| cltest.c | 60 #ifdef DHCPv6 62 void dhcpv6(struct packet *packet) { } function 69 #endif /* DHCPv6 */ 91 #ifdef DHCPv6 92 dhcpv6, 93 #endif /* DHCPv6 */
|
| cltest2.c | 293 #ifdef DHCPv6 294 void dhcpv6(struct packet *packet) { } function 302 #endif /* DHCPv6 */
|
| omshell.c | 56 #ifdef DHCPv6 57 dhcpv6, 58 #endif /* DHCPv6 */ 77 #ifdef DHCPv6 79 void dhcpv6(struct packet *packet) { } function 86 #endif /* DHCPv6 */
|
| /src/external/mpl/dhcp/dist/relay/ |
| dhcrelay.c | 88 #ifdef DHCPv6 89 /* Force use of DHCPv6 interface-id option. */ 116 #ifdef DHCPv6 145 #ifdef DHCPv6 146 dhcpv6, 147 #endif /* DHCPv6 */ 183 #ifdef DHCPv6 225 #else /* !DHCPv6 */ 277 #ifdef DHCPv6 279 static const char use_v4command[] = "Command not used for DHCPv6: %s" 2082 dhcpv6(struct packet *packet) { function [all...] |
| /src/external/mpl/dhcp/dist/server/ |
| dhcpd.c | 89 #ifdef DHCPv6 125 #ifdef DHCPv6 126 dhcpv6, 127 #endif /* DHCPv6 */ 177 #ifdef DHCPv6 186 #else /* !DHCPv6 */ 189 #endif /* DHCPv6 */ 302 #ifdef DHCPv6 307 #endif /* DHCPv6 */ 525 #ifdef DHCPv6 [all...] |
| dhcpv6.c | 1 /* $NetBSD: dhcpv6.c,v 1.4 2020/08/03 21:10:57 christos Exp $ */ 20 __RCSID("$NetBSD: dhcpv6.c,v 1.4 2020/08/03 21:10:57 christos Exp $"); 23 /*! \file server/dhcpv6.c */ 27 #ifdef DHCPv6 63 * DHCPv6 Reply workflow assist. A Reply packet is built by various 212 * and call \ref send_dhcpv4_response() (DHCPv6 side) or 251 * \brief Send the DHCPv4-response back to the DHCPv6 side 252 * (DHCPv6 server function) 254 * Format: interface:16 + address:16 + udp:4 + DHCPv6 DHCPv4-response message 908 * in its entirety in enc_opt_data, and storing any decoded DHCPv6 option 7745 dhcpv6(struct packet *packet) { function [all...] |
| /src/external/mpl/dhcp/dist/includes/ |
| dhcpd.h | 341 * be addressed for DHCPv6 support. 413 unsigned char dhcpv6_msg_type; /* DHCPv6 message type */ 415 /* DHCPv6 transaction ID */ 418 /* DHCPv6 relay information */ 423 /* DHCPv6 packet containing this one, or NULL if none */ 426 /* DHCPv4-over-DHCPv6 flags */ 429 /* DHCPv4-over-DHCPv6 response, or NULL */ 470 * Only used in DHCPv6. 1157 /* DHCPv6 lease structures */ 1325 /* DHCPv6 values. * 3912 void (*dhcpv6) (struct packet *); member in struct:libdhcp_callbacks [all...] |
| /src/external/mpl/dhcp/dist/client/ |
| dhclient.c | 96 #if defined(DHCPv6) && defined(DHCP4o6) 113 #if defined(DHCPv6) 127 #ifdef DHCPv6 128 dhcpv6, 129 #endif /* DHCPv6 */ 247 #if defined(DHCPv6) && defined(DHCP4o6) 263 #ifdef DHCPv6 267 #ifdef DHCPv6 281 #else /* DHCPv6 */ 337 #ifdef DHCPv6 1978 dhcpv6(struct packet *packet) { function [all...] |
| /src/external/mpl/dhcp/dist/common/ |
| options.c | 161 * have a length field, unless it's a DHCPv6 zero-length 1051 * Stores the options from the DHCPv6 universe into the buffer given. 3555 /* Turn the FQDN option space into a DHCPv6 FQDN option buffer. 3654 /* Read the DHCPv6 FQDN option's contents into the FQDN virtual space. 4122 #ifdef DHCPv6 4236 libdhcp_callbacks.dhcpv6(decoded_packet); 4251 #endif /* DHCPv6 */
|