diff options
author | Neale Ranns <nranns@cisco.com> | 2017-07-18 09:26:53 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-07-18 19:05:03 +0000 |
commit | 51822bf07a3f0fe72834ea94659faf6e262475ba (patch) | |
tree | 55acdc249df261a92d0ec09bb7c05a2d4fa7ca44 /src/vnet/dhcp/dhcp.api | |
parent | a2fbf6ba0e2553687f56d9a9fb63e2972bdb26c6 (diff) |
DHCP client option 61 "client_id"
the existing seeting of client_id to a VPP version number was unused and so overridden
Change-Id: If9ebea936336f1fcca8d07e67186c95f8f8f0ccd
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/dhcp/dhcp.api')
-rw-r--r-- | src/vnet/dhcp/dhcp.api | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/dhcp/dhcp.api b/src/vnet/dhcp/dhcp.api index a2803728dd9..c632c0877ae 100644 --- a/src/vnet/dhcp/dhcp.api +++ b/src/vnet/dhcp/dhcp.api @@ -61,6 +61,7 @@ autoreply define dhcp_proxy_set_vss @param context - sender context, to match reply w/ request @param sw_if_index - index of the interface for DHCP client @param hostname - hostname + @param client_id - Client ID - option 61 @param is_add - add the config if non-zero, else delete @param want_dhcp_event - DHCP event sent to the sender via dhcp_compl_event API message if non-zero @@ -72,6 +73,7 @@ autoreply define dhcp_client_config u32 context; u32 sw_if_index; u8 hostname[64]; + u8 client_id[64]; u8 is_add; u8 want_dhcp_event; u32 pid; |