1f0a8f29de
Before these were generated from a freshly seeded PRNG which reduces the state space of possible DUIDs and skews the distribution of both DUIDs and IAIDs as a function of the PRNG choice. None of this really matters much in practice, but do things right.
12 lines
228 B
C
12 lines
228 B
C
// Copyright 2014-2022 Nicholas J. Kain <njkain at gmail dot com>
|
|
// SPDX-License-Identifier: MIT
|
|
#ifndef NJK_NDHC_DUIAID_H_
|
|
#define NJK_NDHC_DUIAID_H_
|
|
|
|
#include "ndhc.h"
|
|
|
|
void get_clientid(struct client_config_t *cc);
|
|
|
|
#endif
|
|
|