Searched defs:global_duidlen (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/
H A Dstates.c52 static size_t global_duidlen; variable
825 if (write_stable_duid(global_duid, global_duidlen) == -1) {
1100 (global_duid = read_stable_duid(&global_duidlen)) == NULL) {
1101 global_duid = make_stable_duid(pif->pif_name, &global_duidlen);
1108 dsmp->dsm_cid = malloc(global_duidlen);
1111 (void) memcpy(dsmp->dsm_cid, global_duid, global_duidlen);
1112 dsmp->dsm_cidlen = global_duidlen;
1114 dsmp->dsm_cid = malloc(5 + global_duidlen);
1122 (void) memcpy(dsmp->dsm_cid + 5, global_duid, global_duidlen);
1123 dsmp->dsm_cidlen = 5 + global_duidlen;
[all...]

Completed in 63 milliseconds