blob: 18b341b11cadee8d5e0a761ac9f65eae88b58acd [file] [log] [blame]
Florin Coras7baeb712019-01-04 17:05:43 -08001/*
2 * Copyright (c) 2019 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 *
15 * VCL Locked Sessions
16 */
17
18#ifndef SRC_VCL_VCL_LOCKED_H_
19#define SRC_VCL_VCL_LOCKED_H_
20
21#include <vcl/vppcom.h>
22
23#define VLS_INVALID_HANDLE ((int)-1)
24
25typedef int vls_handle_t;
26
27vls_handle_t vls_create (uint8_t proto, uint8_t is_nonblocking);
28int vls_close (vls_handle_t vlsh);
29int vls_bind (vls_handle_t vlsh, vppcom_endpt_t * ep);
30int vls_listen (vls_handle_t vlsh, int q_len);
31int vls_connect (vls_handle_t vlsh, vppcom_endpt_t * server_ep);
32vls_handle_t vls_accept (vls_handle_t vlsh, vppcom_endpt_t * ep, int flags);
33ssize_t vls_read (vls_handle_t vlsh, void *buf, size_t nbytes);
34ssize_t vls_recvfrom (vls_handle_t vlsh, void *buffer, uint32_t buflen,
35 int flags, vppcom_endpt_t * ep);
36int vls_write (vls_handle_t vlsh, void *buf, size_t nbytes);
37int vls_write_msg (vls_handle_t vlsh, void *buf, size_t nbytes);
38int vls_sendto (vls_handle_t vlsh, void *buf, int buflen, int flags,
39 vppcom_endpt_t * ep);
40int vls_attr (vls_handle_t vlsh, uint32_t op, void *buffer,
41 uint32_t * buflen);
42vls_handle_t vls_epoll_create (void);
43int vls_epoll_ctl (vls_handle_t ep_vlsh, int op, vls_handle_t vlsh,
44 struct epoll_event *event);
45int vls_epoll_wait (vls_handle_t ep_vlsh, struct epoll_event *events,
46 int maxevents, double wait_for_time);
Florin Coras0ef8ef22019-01-18 08:37:13 -080047int vls_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
48 vcl_si_set * except_map, double wait_for_time);
Florin Coras7baeb712019-01-04 17:05:43 -080049vcl_session_handle_t vlsh_to_sh (vls_handle_t vlsh);
50vcl_session_handle_t vlsh_to_session_index (vls_handle_t vlsh);
51vls_handle_t vls_session_index_to_vlsh (uint32_t session_index);
52int vls_app_create (char *app_name);
hanlin4266d4d2020-05-19 17:34:17 +080053unsigned char vls_use_eventfd (void);
Florin Coras7baeb712019-01-04 17:05:43 -080054
55#endif /* SRC_VCL_VCL_LOCKED_H_ */
56
57/*
58 * fd.io coding-style-patch-verification: ON
59 *
60 * Local Variables:
61 * eval: (c-set-style "gnu")
62 * End:
63 */