diff options
Diffstat (limited to 'src/vcl/vppcom.h')
-rw-r--r-- | src/vcl/vppcom.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vcl/vppcom.h b/src/vcl/vppcom.h index dd72986ec53..d9ed22fe755 100644 --- a/src/vcl/vppcom.h +++ b/src/vcl/vppcom.h @@ -159,6 +159,12 @@ extern int vppcom_epoll_wait (uint32_t vep_idx, struct epoll_event *events, int maxevents, double wait_for_time); extern int vppcom_session_attr (uint32_t session_index, uint32_t op, void *buffer, uint32_t * buflen); +extern int vppcom_session_recvfrom (uint32_t session_index, void *buffer, + uint32_t buflen, int flags, + vppcom_endpt_t * ep); +extern int vppcom_session_sendto (uint32_t session_index, void *buffer, + uint32_t buflen, int flags, + vppcom_endpt_t * ep); #endif /* included_vppcom_h */ |