Files
vpp/src/plugins/lb/CMakeLists.txt
Yulong Pei db43bb6af7 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>
2020-01-17 14:21:03 +00:00

36 lines
831 B
CMake

# Copyright (c) 2018 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
add_vpp_plugin(lb
SOURCES
api.c
cli.c
lb.c
node.c
util.c
API_FILES
lb.api
lb_types.api
INSTALL_HEADERS
lb.h
util.h
lbhash.h
API_TEST_SOURCES
lb_test.c
)
target_link_libraries(lb_test_plugin vatclient)