From 94495f2a6a68ac2202b7715ce09620f1ba6fe673 Mon Sep 17 00:00:00 2001 From: Ole Troan Date: Thu, 2 Aug 2018 11:58:12 +0200 Subject: PAPI: Use UNIX domain sockets instead of shared memory Adds support for running the API purely across Unix domain sockets. Usage: vpp = VPP(use_socket=True) Change-Id: Iafc1301e03dd3edc3f4d702dd6c0b98d3b50b69e Signed-off-by: Ole Troan --- src/vlibapi/api_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vlibapi') diff --git a/src/vlibapi/api_common.h b/src/vlibapi/api_common.h index 94320826f3d..497a1e8bd16 100644 --- a/src/vlibapi/api_common.h +++ b/src/vlibapi/api_common.h @@ -64,7 +64,7 @@ typedef struct vl_api_registration_ u32 clib_file_index; /**< Socket only: file index */ i8 *unprocessed_input; /**< Socket only: pending input */ u32 unprocessed_msg_length; /**< Socket only: unprocssed length */ - u8 *output_vector; /**< Socket only: output vecto */ + u8 *output_vector; /**< Socket only: output vector */ int *additional_fds_to_close; /* socket client only */ -- cgit 1.2.3-korg