diff options
author | Ole Troan <otroan@employees.org> | 2023-10-19 09:05:38 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2023-11-16 15:38:51 +0000 |
commit | f3be34e4433bb86509044290fa3cced543697a31 (patch) | |
tree | ecfc225dedd77a801e2bc69bfdca39287884dc7c /src/plugins/dhcp/dhcp_test.c | |
parent | 4b89013081851f5e71162244d9e052eac5a98f3d (diff) |
dhcp: api to enable client detect on interface
DHCPv4 aka BOOTP is somewhat awkward. A DHCP client
on an interface must receive DHCP packets to
the broadcast address or to a unicast address.
Apparently before it's been assigned to itself.
Add this new API to allow external DHCP clients
enable the DHCP client detect feature per interface.
Type: improvement
Change-Id: If55aac03f25a045496be483940e4f5e7e18885b9
Signed-off-by: Ole Troan <otroan@employees.org>
Diffstat (limited to 'src/plugins/dhcp/dhcp_test.c')
-rw-r--r-- | src/plugins/dhcp/dhcp_test.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/dhcp/dhcp_test.c b/src/plugins/dhcp/dhcp_test.c index d8288e6e14b..7820f51d442 100644 --- a/src/plugins/dhcp/dhcp_test.c +++ b/src/plugins/dhcp/dhcp_test.c @@ -421,6 +421,11 @@ api_dhcp_plugin_get_version (vat_main_t * vam) { return -1; } +static int +api_dhcp_client_detect_enable_disable (vat_main_t *vam) +{ + return -1; +} static void vl_api_dhcp_plugin_get_version_reply_t_handler |