diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2021-08-10 15:05:29 +0200 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-08-13 18:29:23 +0000 |
commit | 2a1783fd6ae7e17c994010fca414c180eb48bc40 (patch) | |
tree | c7f12d0894ccd57a3098da77414338cb394c5efc /src/vnet/ip/ip_test.c | |
parent | 8034a36a9cedc95f6762bf0a07f6617d0bf69bfe (diff) |
ip: punt redirect add nh in api
Type: feature
Change-Id: Ia970f444ba2f38b7a42ea94942c906f1b541511b
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/vnet/ip/ip_test.c')
-rw-r--r-- | src/vnet/ip/ip_test.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/vnet/ip/ip_test.c b/src/vnet/ip/ip_test.c index 7d8ed9ff09a..2de8235288d 100644 --- a/src/vnet/ip/ip_test.c +++ b/src/vnet/ip/ip_test.c @@ -658,6 +658,12 @@ api_ip_punt_redirect (vat_main_t *vat) } static int +api_add_del_ip_punt_redirect_v2 (vat_main_t *vat) +{ + return -1; +} + +static int api_ip_punt_redirect_dump (vat_main_t *vat) { return -1; @@ -667,6 +673,20 @@ static void vl_api_ip_punt_redirect_details_t_handler ( vl_api_ip_punt_redirect_details_t *mp) { + /**/ +} + +static int +api_ip_punt_redirect_v2_dump (vat_main_t *vat) +{ + return -1; +} + +static void +vl_api_ip_punt_redirect_v2_details_t_handler ( + vl_api_ip_punt_redirect_v2_details_t *mp) +{ + /**/ } static int |