diff options
author | Florin Coras <fcoras@cisco.com> | 2020-09-08 22:43:47 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-09-14 14:33:50 +0000 |
commit | 935ce75cb060da34991e6b02bec5680445f85323 (patch) | |
tree | 1afceb3650b40c60ae9a83937e1ae839c9aee40a /src/vcl/CMakeLists.txt | |
parent | b88de908101081f870d94e1415659326b589b9ce (diff) |
vcl: add support for app socket api
To enable add "app-socket-api /path/to/socket" to vcl.conf. On vpp side, add
use-app-socket-api to session stanza in startup.conf
VPP allocates a socket per application namespace which it places in the
app_ns_sockets subfolder of the run folder (default /var/run/vpp). The
socket used implicitly selects the app namespace for the vcl app.
Type: feature
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ifc14b93dcbf6ef9bed1852d46cd069f4855b92ef
Diffstat (limited to 'src/vcl/CMakeLists.txt')
-rw-r--r-- | src/vcl/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vcl/CMakeLists.txt b/src/vcl/CMakeLists.txt index ab0a6ad6a2d..e6d8f98ffed 100644 --- a/src/vcl/CMakeLists.txt +++ b/src/vcl/CMakeLists.txt @@ -21,6 +21,7 @@ add_vpp_library(vppcom vcl_cfg.c vcl_private.c vcl_locked.c + vcl_sapi.c LINK_LIBRARIES vppinfra svm vlibmemoryclient rt pthread |