diff options
author | Dave Barach <dbarach@cisco.com> | 2018-03-23 09:52:52 -0400 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2018-03-23 18:17:52 +0000 |
commit | 4585eb86c54afd21d5aa264e947020a041656064 (patch) | |
tree | 5cc4dd8ed7a65cf2f4b808c3164d2833b3f4b846 /src/vnet/dhcp/client.h | |
parent | 4631610a20e6ae3181cb517db27a93b2a3e07eff (diff) |
Drop dhcp pkts w/ hardware address mismatches
Add a few dhcp client rx packet/state counters
Temporarily disable the dhcp client unit test, since it trips over the
newly-added hardware address check.
Change-Id: I7f68607e6ed3d738cba357c3fe76664a99b71cd8
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'src/vnet/dhcp/client.h')
-rw-r--r-- | src/vnet/dhcp/client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vnet/dhcp/client.h b/src/vnet/dhcp/client.h index 1c2becb3058..0334041652e 100644 --- a/src/vnet/dhcp/client.h +++ b/src/vnet/dhcp/client.h @@ -74,6 +74,9 @@ typedef struct /* Set the broadcast Flag in the Discover/Request messages */ u8 set_broadcast_flag; + /* Interface MAC address, so we can do an rx-packet-for-us check */ + u8 client_hardware_address[6]; + u8 pad1; void *event_callback; } dhcp_client_t; |