FD.io VPP  v18.04-17-g3a0d853
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  /* Temporarily disable the connection, so we can keep it around... */
30 
32 
38 
39  u8 *name;
43 
45 
46 #define SOCKET_CLIENT_DEFAULT_BUFFER_SIZE 4096
47 
48 int vl_socket_client_connect (char *socket_path, char *client_name,
49  u32 socket_buffer_size);
50 void vl_socket_client_disconnect (void);
51 int vl_socket_client_read (int wait);
52 int vl_socket_client_write (void);
53 void vl_socket_client_enable_disable (int enable);
54 void *vl_socket_client_msg_alloc (int nbytes);
56 clib_error_t *vl_socket_client_recv_fd_msg (int *fd_to_recv, u32 wait);
57 
58 #endif /* SRC_VLIBMEMORY_SOCKET_CLIENT_H_ */
59 
60 /*
61  * fd.io coding-style-patch-verification: ON
62  *
63  * Local Variables:
64  * eval: (c-set-style "gnu")
65  * End:
66  */
ssvm_private_t memfd_segment
Definition: socket_client.h:41
int vl_socket_client_init_shm(vl_api_shm_elem_config_t *config)
clib_time_t clib_time
Definition: socket_client.h:40
socket_client_main_t socket_client_main
Definition: socket_client.c:44
int vl_socket_client_write(void)
void * vl_socket_client_msg_alloc(int nbytes)
int vl_socket_client_read(int wait)
Definition: socket_client.c:56
clib_socket_t client_socket
Definition: socket_client.h:31
void vl_socket_client_enable_disable(int enable)
unsigned int u32
Definition: types.h:88
struct _socket_t clib_socket_t
clib_error_t * vl_socket_client_recv_fd_msg(int *fd_to_recv, u32 wait)
unsigned char u8
Definition: types.h:56
int vl_socket_client_connect(char *socket_path, char *client_name, u32 socket_buffer_size)
void vl_socket_client_disconnect(void)