diff options
author | Beniamino Galvani <bgalvani@redhat.com> | 2015-07-09 18:04:01 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-07-12 14:26:32 -0400 |
commit | e43a8393eaf058c4ecd2a5968f59d83b911d4f1f (patch) | |
tree | 69b6395ae495f6cedc8d32cdbde62fbf6b056b52 /src/libsystemd-network/dhcp-protocol.h | |
parent | 89a2faeed5abf9ee284c157c1940a5ac1d829f9b (diff) |
dhcp: add support for vendor specific DHCP option
This adds support for option 43 (Vendor Specific Information) to
libsystemd-network DHCP code. The option carries an opaque object of n
octets, interpreted by vendor-specific code on the clients and
servers.
[@zonque: adopted to new unhexmem() API]
Diffstat (limited to 'src/libsystemd-network/dhcp-protocol.h')
-rw-r--r-- | src/libsystemd-network/dhcp-protocol.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsystemd-network/dhcp-protocol.h b/src/libsystemd-network/dhcp-protocol.h index abca9422c5..aa37e9b0b5 100644 --- a/src/libsystemd-network/dhcp-protocol.h +++ b/src/libsystemd-network/dhcp-protocol.h @@ -125,6 +125,7 @@ enum { DHCP_OPTION_BROADCAST = 28, DHCP_OPTION_STATIC_ROUTE = 33, DHCP_OPTION_NTP_SERVER = 42, + DHCP_OPTION_VENDOR_SPECIFIC = 43, DHCP_OPTION_REQUESTED_IP_ADDRESS = 50, DHCP_OPTION_IP_ADDRESS_LEASE_TIME = 51, DHCP_OPTION_OVERLOAD = 52, |