1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-01 17:51:22 +03:00

sd-dhcp6: support custom DUID's up to the size specified in the RFC

This commit is contained in:
Tom Gundersen 2014-10-02 16:00:55 +02:00
parent 66eac1201a
commit 9547267dc5

View File

@ -39,7 +39,10 @@
#define SYSTEMD_PEN 43793
#define HASH_KEY SD_ID128_MAKE(80,11,8c,c2,fe,4a,03,ee,3e,d6,0c,6f,36,39,14,09)
#define MAX_DUID_LEN 32
/* RFC 3315 section 9.1:
* A DUID can be no more than 128 octets long (not including the type code).
*/
#define MAX_DUID_LEN 128
struct sd_dhcp6_client {
RefCount n_ref;