diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2017-11-13 21:21:53 -0500 |
---|---|---|
committer | Keith Burns <alagalah@gmail.com> | 2017-11-14 03:44:25 +0000 |
commit | 227867f5d3fb1b1dacbaf2f426812417b72ef03a (patch) | |
tree | 6d7b603b196d170717d5f81e23f122ec38989fb9 /src/vcl/vppcom.h | |
parent | 49806fe252030a4cd993f598ff65a89590d57388 (diff) |
VCL-LDPRELOAD: add sendfile/sendfile64 implementation.
Change-Id: If0c399269238912456d670432d7e953c9d91b9fb
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'src/vcl/vppcom.h')
-rw-r--r-- | src/vcl/vppcom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vcl/vppcom.h b/src/vcl/vppcom.h index 6260bdc82e4..93b7173550e 100644 --- a/src/vcl/vppcom.h +++ b/src/vcl/vppcom.h @@ -72,7 +72,7 @@ typedef enum typedef enum { VPPCOM_ATTR_GET_NREAD, - VPPCOM_ATTR_PEEK_NREAD, + VPPCOM_ATTR_GET_NWRITE, VPPCOM_ATTR_GET_FLAGS, VPPCOM_ATTR_SET_FLAGS, VPPCOM_ATTR_GET_LCL_ADDR, @@ -147,7 +147,7 @@ extern int vppcom_session_bind (uint32_t session_index, vppcom_endpt_t * ep); extern int vppcom_session_listen (uint32_t session_index, uint32_t q_len); extern int vppcom_session_accept (uint32_t session_index, vppcom_endpt_t * client_ep, - double wait_for_time); + uint32_t flags, double wait_for_time); extern int vppcom_session_connect (uint32_t session_index, vppcom_endpt_t * server_ep); |