FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
socket_client.h
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #ifndef SRC_VLIBMEMORY_SOCKET_CLIENT_H_
19 #define SRC_VLIBMEMORY_SOCKET_CLIENT_H_
20 
21 #include <vppinfra/file.h>
22 #include <vppinfra/time.h>
24 
25 typedef struct
26 {
27  int socket_fd;
28  int socket_enable; /**< Can temporarily disable the connection
29  but still can keep it around... */
30  u32 client_index; /**< Client index allocated by VPP */
31 
33 
39 
40  u8 *name;
43 
46 
48 
49 #define SOCKET_CLIENT_DEFAULT_BUFFER_SIZE 4096
50 
51 int vl_socket_client_connect (char *socket_path, char *client_name,
52  u32 socket_buffer_size);
53 void vl_socket_client_disconnect (void);
54 void vl_socket_client_enable_disable (int enable);
55 int vl_socket_client_read (int wait);
56 int vl_socket_client_write (void);
57 void *vl_socket_client_msg_alloc (int nbytes);
59  int want_pthread);
60 clib_error_t *vl_socket_client_recv_fd_msg (int fds[], int n_fds, u32 wait);
61 
62 /*
63  * Socket client apis that explicitly pass socket main as an argument
64  */
65 
66 int vl_socket_client_connect2 (socket_client_main_t * scm, char *socket_path,
67  char *client_name, u32 socket_buffer_size);
70  int enable);
71 int vl_socket_client_read2 (socket_client_main_t * scm, int wait);
73 void *vl_socket_client_msg_alloc2 (socket_client_main_t * scm, int nbytes);
75  vl_api_shm_elem_config_t * config,
76  int want_pthread);
78  int fds[], int n_fds, u32 wait);
79 
80 #endif /* SRC_VLIBMEMORY_SOCKET_CLIENT_H_ */
81 
82 /*
83  * fd.io coding-style-patch-verification: ON
84  *
85  * Local Variables:
86  * eval: (c-set-style "gnu")
87  * End:
88  */
int vl_socket_client_connect2(socket_client_main_t *scm, char *socket_path, char *client_name, u32 socket_buffer_size)
void vl_socket_client_enable_disable2(socket_client_main_t *scm, int enable)
ssvm_private_t memfd_segment
Definition: socket_client.h:42
void vl_socket_client_disconnect2(socket_client_main_t *scm)
unsigned char u8
Definition: types.h:56
clib_time_t clib_time
Definition: socket_client.h:41
int vl_socket_client_init_shm2(socket_client_main_t *scm, vl_api_shm_elem_config_t *config, int want_pthread)
socket_client_main_t socket_client_main
Definition: socket_client.c:44
unsigned int u32
Definition: types.h:88
clib_error_t * vl_socket_client_recv_fd_msg2(socket_client_main_t *scm, int fds[], int n_fds, u32 wait)
int vl_socket_client_init_shm(vl_api_shm_elem_config_t *config, int want_pthread)
int vl_socket_client_write2(socket_client_main_t *scm)
int vl_socket_client_write(void)
void * vl_socket_client_msg_alloc(int nbytes)
int vl_socket_client_read(int wait)
clib_socket_t client_socket
Definition: socket_client.h:32
void vl_socket_client_enable_disable(int enable)
void * vl_socket_client_msg_alloc2(socket_client_main_t *scm, int nbytes)
int vl_socket_client_read2(socket_client_main_t *scm, int wait)
struct _socket_t clib_socket_t
u32 client_index
Client index allocated by VPP.
Definition: socket_client.h:30
int socket_enable
Can temporarily disable the connection but still can keep it around...
Definition: socket_client.h:28
int vl_socket_client_connect(char *socket_path, char *client_name, u32 socket_buffer_size)
clib_error_t * vl_socket_client_recv_fd_msg(int fds[], int n_fds, u32 wait)
void vl_socket_client_disconnect(void)