HomeSort by relevance Sort by last modified time
    Searched full:duid (Results 1 - 8 of 8) sorted by null

  /external/dhcpcd/
README 52 dhcpcd-3 enabled DUID support by default - this has changed in dhcpcd-4.
53 You can enable it via the --duid, -D command line option or by using the
54 duid directive in dhcpcd.conf.
55 If CMDLINE_COMPAT is defined the we renable DUID support by default IF
56 the dhcpcd.duid file exits. This keeps the clients working as they were,
config.h 65 #ifndef DUID
66 # define DUID SYSCONFDIR "/" PACKAGE ".duid"
dhcpcd.conf.5 54 .It Ic duid
62 The duid generated will be held in
63 .Pa /system/etc/dhcpcd/dhcpcd.duid
dhcpcd.conf.5.in 69 .It Ic duid
77 The duid generated will be held in
78 .Pa @SYSCONFDIR@/dhcpcd.duid
dhcpcd.8 294 .It Fl D , -duid
301 generates the DUID and stores in it
302 .Pa /system/etc/dhcpcd/dhcpcd.duid
401 .It Pa /system/etc/dhcpcd/dhcpcd.duid
402 Text file that holds the DUID used to identify the host.
dhcpcd.8.in 295 .It Fl D , -duid
302 generates the DUID and stores in it
303 .Pa @SYSCONFDIR@/dhcpcd.duid
409 .It Pa @SYSCONFDIR@/dhcpcd.duid
410 Text file that holds the DUID used to identify the host.
client.c 256 get_duid(unsigned char *duid, const struct interface *iface)
264 unsigned char *p = duid;
268 /* If we already have a DUID then use it as it's never supposed
270 if ((f = fopen(DUID, "r"))) {
280 hwaddr_aton(duid, option);
295 if (!(f = fopen(DUID, "w")))
303 /* time returns seconds from jan 1 1970, but DUID-LLT is
312 len = p - duid;
313 x = fprintf(f, "%s\n", hwaddr_ntoa(duid, len));
315 /* Failed to write the duid? scrub it, we cannot use it *
469 unsigned char *duid = NULL; local
    [all...]
dhcpcd.c 90 {"duid", no_argument, NULL, 'D'},
676 /* If the duid file exists, then enable duid by default
678 if ((f = fopen(DUID, "r"))) {

Completed in 186 milliseconds