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

  /external/dhcpcd-6.8.2/
defs.h 42 #ifndef DUID
43 # define DUID SYSCONFDIR "/" PACKAGE ".duid"
duid.c 51 #include "duid.h"
69 /* time returns seconds from jan 1 1970, but DUID-LLT is
92 /* If we already have a DUID then use it as it's never supposed
94 if ((fp = fopen(DUID, "r"))) {
114 "error reading DUID: %s: %m", DUID);
128 "picked interface %s to generate a DUID",
137 if (!(fp = fopen(DUID, "w"))) {
138 logger(ifp->ctx, LOG_ERR, "error writing DUID: %s: %m", DUID);
    [all...]
  /external/toybox/toys/pending/
dhcp6.c 106 } DUID;
127 static DUID *duid; variable
188 if(!duid) {
190 duid = (DUID*)malloc(sizeof(DUID));
191 duid->type = htons(1);
192 duid->hwtype = htons(1);
193 duid->time = htonl((uint32_t)(time(NULL) - 946684800) & 0xffffffff)
    [all...]

Completed in 72 milliseconds