diff options
author | Denys Haryachyy <garyachy@users.noreply.github.com> | 2023-11-17 11:57:18 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2024-01-19 12:51:07 +0000 |
commit | 9f8d3b9b2fd3ec7c0b43ebd0d3b413e859073a1b (patch) | |
tree | c8ffefc1cc632eab291af5b799b7015a3d0907e3 /src/plugins/lldp/lldp_test.c | |
parent | c03593e81d924e65de0f28ae69b452ddd2052757 (diff) |
lldp: dump api
Introduce a dump api for LLDP plugin
Type: improvement
Signed-off-by: Stanislav Zaikin <stanislav.zaikin@46labs.com>
Change-Id: If67dedd329cced59227187284646d147ef6ef92c
Diffstat (limited to 'src/plugins/lldp/lldp_test.c')
-rw-r--r-- | src/plugins/lldp/lldp_test.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/plugins/lldp/lldp_test.c b/src/plugins/lldp/lldp_test.c index 6eb3e0f0279..ba5ecb20260 100644 --- a/src/plugins/lldp/lldp_test.c +++ b/src/plugins/lldp/lldp_test.c @@ -142,4 +142,16 @@ api_sw_interface_set_lldp (vat_main_t * vam) return ret; } +static int +api_lldp_dump (vat_main_t *vam) +{ + return 0; +} + +static void +vl_api_lldp_dump_reply_t_handler (vl_api_lldp_dump_reply_t *mp) +{ + // not yet implemented +} + #include <lldp/lldp.api_test.c> |