diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2023-04-27 12:43:46 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-04-28 03:00:59 +0000 |
commit | 51f1b26e85a758338b13bacfdf4ba9e7d7cb7f8f (patch) | |
tree | 7734705e77cda3906815d22173f06f933bd1130a /src/vppinfra/socket.h | |
parent | 9db32048de0ca6be7bf855bb094c072179e163fb (diff) |
session: update due to clib_socket refactoring
After the clib_socket_init syntax changed, the behavior of VCL
socket creation was broken. This patch introduces app_namespace_add_del_v4
to address the behavioral change.
Type: refactor
Change-Id: Ice016bdb372233fd3317f166d45625e086e9b4df
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/vppinfra/socket.h')
-rw-r--r-- | src/vppinfra/socket.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vppinfra/socket.h b/src/vppinfra/socket.h index 132e89f2871..13e09e66a91 100644 --- a/src/vppinfra/socket.h +++ b/src/vppinfra/socket.h @@ -118,12 +118,11 @@ typedef struct _socket_t from IPPORT_USERRESERVED (5000). */ clib_error_t *clib_socket_init (clib_socket_t * socket); -clib_error_t *clib_socket_init_netns (clib_socket_t *socket, u8 *namespace); - clib_error_t *clib_socket_accept (clib_socket_t * server, clib_socket_t * client); int clib_socket_prefix_is_valid (char *s); +int clib_socket_prefix_get_type (char *s); always_inline uword clib_socket_is_server (clib_socket_t * sock) |