diff options
author | Yulong Pei <yulong.pei@intel.com> | 2020-01-09 01:12:43 +0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2020-01-17 14:21:03 +0000 |
commit | db43bb6af78c33e47d29889b047cced4b11fe4d7 (patch) | |
tree | 125108d5ae646765cce8cbaff9240058eb3f05ad /src/vnet | |
parent | 720435d03531da68e18c2a0dc867aa99d2daced6 (diff) |
lb: fix that lb_add_del_vip and lb_add_del_as api doesn't work correctly
Currently if user want to set ip4 address to the api, it must convert to ip6
format, e.g. user want to ip4 "90.1.2.1" but must convert to "::5A01:0201",
it is not acceptable, this fix solved the issue.
Ticket: FDIO-753
Type: fix
Change-Id: I2ffa5a3d38400ee176cf601421074f71fc395f03
Signed-off-by: Yulong Pei <yulong.pei@intel.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vnet/CMakeLists.txt b/src/vnet/CMakeLists.txt index c2a0dd54401..04a8b1d4e09 100644 --- a/src/vnet/CMakeLists.txt +++ b/src/vnet/CMakeLists.txt @@ -1587,3 +1587,12 @@ add_vpp_library(vnet ) ############################################################################## +# vpp api test client library +############################################################################## + +add_vpp_library (vatclient + SOURCES ip/ip_types_api.c + DEPENDS api_headers +) + +############################################################################## |