diff options
author | Ole Troan <ot@cisco.com> | 2021-08-17 12:57:00 +0200 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-08-18 08:05:16 +0000 |
commit | 91144fbf54764feb005a33419d0129febd2365d4 (patch) | |
tree | 7a6c6fbd3babf4db5ce1db27c7f54a92ca7338e1 /src/vat2/CMakeLists.txt | |
parent | 4de12b9c62757f7297c6ac5c7eedff17082f4ee8 (diff) |
vat2: add shared memory argument
Add prefix argument to specifiy shared memory segment.
Add long arguments.
Add argument to dump apis.
Add help.
Add template argument
E.g:
vat2 --template sw_interface_add_del_address
{
"_msgname": "sw_interface_add_del_address",
"sw_if_index": 0,
"is_add": false,
"del_all": false,
"prefix": "0.0.0.0"
}
Usage: vat2 [OPTION] <message-name> <JSON object>
Send API message to VPP and print reply
-d, --debug Print additional information
-p, --prefix Specify shared memory prefix to connect to a given VPP instance
-f, --file File containing a JSON object with the arguments for the message to send
--dump-apis List all APIs available from connected VPP instance
Type: improvement
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I2d32483a727bc16990c9a30dfa9bc1fa7b1fa85a
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'src/vat2/CMakeLists.txt')
-rw-r--r-- | src/vat2/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vat2/CMakeLists.txt b/src/vat2/CMakeLists.txt index 9069d8f6b62..2afb95e6920 100644 --- a/src/vat2/CMakeLists.txt +++ b/src/vat2/CMakeLists.txt @@ -14,7 +14,7 @@ ############################################################################## # vat2 ############################################################################## -add_vpp_executable(vat2 ENABLE_EXPORTS NO_INSTALL +add_vpp_executable(vat2 ENABLE_EXPORTS SOURCES main.c plugin.c |