blob: 10191db6410871cbed07976d6c72eb78d97f9918 [file] [log] [blame]
Florin Corase86a8ed2018-01-05 03:20:25 -08001/*
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>
23#include <vlibmemory/memory_shared.h>
24
25typedef struct
26{
27 int socket_fd;
28 /* Temporarily disable the connection, so we can keep it around... */
29 int socket_enable;
30
31 clib_socket_t client_socket;
32
33 u32 socket_buffer_size;
34 u8 *socket_tx_buffer;
35 u8 *socket_rx_buffer;
36 u32 socket_tx_nbytes;
37 int control_pings_outstanding;
38
39 u8 *name;
40 clib_time_t clib_time;
41} socket_client_main_t;
42
43extern socket_client_main_t socket_client_main;
44
45#define SOCKET_CLIENT_DEFAULT_BUFFER_SIZE 4096
46
47int vl_socket_client_connect (char *socket_path, char *client_name,
48 u32 socket_buffer_size);
49void vl_socket_client_disconnect (void);
50int vl_socket_client_read (int wait);
51int vl_socket_client_write (void);
52void vl_socket_client_enable_disable (int enable);
53void *vl_socket_client_msg_alloc (int nbytes);
54int vl_socket_client_init_shm (vl_api_shm_elem_config_t * config);
55
56#endif /* SRC_VLIBMEMORY_SOCKET_CLIENT_H_ */
57
58/*
59 * fd.io coding-style-patch-verification: ON
60 *
61 * Local Variables:
62 * eval: (c-set-style "gnu")
63 * End:
64 */