diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-03-31 00:51:25 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-03-31 00:52:23 -0400 |
commit | 1db30aeab10ca716aae877b298289fe1765f14fb (patch) | |
tree | f870bf4a962a675791846222e5ee9a6d945b4c1d /src/network/networkd.h | |
parent | 97607e1ef95eee75d3ce83001517e6f660c356a0 (diff) | |
parent | 413708d106afb5ec36464c3fad56f081373320e0 (diff) |
Merge pull request #2915 from vinaykul/master
Diffstat (limited to 'src/network/networkd.h')
-rw-r--r-- | src/network/networkd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/network/networkd.h b/src/network/networkd.h index 6bdd8302a0..72a2438ac8 100644 --- a/src/network/networkd.h +++ b/src/network/networkd.h @@ -31,6 +31,7 @@ typedef struct Manager Manager; +#include "dhcp-identifier.h" #include "networkd-address-pool.h" #include "networkd-link.h" #include "networkd-network.h" @@ -61,6 +62,13 @@ struct Manager { LIST_HEAD(AddressPool, address_pools); usec_t network_dirs_ts_usec; + + /* Value of Type in [DUID] section */ + DUIDType duid_type; + /* DUID type code - RFC 3315 */ + uint16_t dhcp_duid_type; + size_t dhcp_duid_len; + uint8_t dhcp_duid[MAX_DUID_LEN]; }; extern const char* const network_dirs[]; |