blob: d7b7055d596f590bae89517dd6083c36fa178493 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 *------------------------------------------------------------------
3 * api.h
Dave Barach371e4e12016-07-08 09:38:52 -04004 *
Ed Warnickecb9cada2015-12-08 15:45:58 -07005 * Copyright (c) 2009 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#ifndef included_vlibsocket_api_h
21#define included_vlibsocket_api_h
22
23#include <vlibapi/api.h>
24
Dave Barach371e4e12016-07-08 09:38:52 -040025typedef struct
26{
27 /* Server port number */
28 int portno;
Ed Warnickecb9cada2015-12-08 15:45:58 -070029
Dave Barach371e4e12016-07-08 09:38:52 -040030 /* By default, localhost... */
31 u32 bind_address;
32
33 /*
34 * (listen, server, client) registrations. Shared memory
35 * registrations are in shared memory
36 */
37 vl_api_registration_t *registration_pool;
38 /*
39 * Chain-drag variables, so message API handlers
40 * (generally) don't know whether they're talking to a socket
41 * or to a shared-memory connection.
42 */
43 vl_api_registration_t *current_rp;
Damjan Marion56dd5432017-09-08 19:52:02 +020044 clib_file_t *current_uf;
Dave Barach371e4e12016-07-08 09:38:52 -040045 /* One input buffer, shared across all sockets */
46 i8 *input_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -070047} socket_main_t;
48
Damjan Marion6a7acc22016-12-19 16:28:36 +010049extern socket_main_t socket_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Damjan Marion56dd5432017-09-08 19:52:02 +020051void socksvr_add_pending_output (clib_file_t * uf,
Dave Barach371e4e12016-07-08 09:38:52 -040052 struct vl_api_registration_ *cf,
53 u8 * buffer, uword buffer_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Dave Barach371e4e12016-07-08 09:38:52 -040055#define SOCKSVR_DEFAULT_PORT 32741 /* whatever */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
57void vl_free_socket_registration_index (u32 pool_index);
Damjan Marion56dd5432017-09-08 19:52:02 +020058void vl_socket_process_msg (clib_file_t * uf,
Dave Barach371e4e12016-07-08 09:38:52 -040059 struct vl_api_registration_ *rp, i8 * input_v);
Damjan Marion56dd5432017-09-08 19:52:02 +020060clib_error_t *vl_socket_read_ready (clib_file_t * uf);
61void vl_socket_add_pending_output (clib_file_t * uf,
Dave Barach371e4e12016-07-08 09:38:52 -040062 struct vl_api_registration_ *rp,
63 u8 * buffer, uword buffer_bytes);
Damjan Marion56dd5432017-09-08 19:52:02 +020064clib_error_t *vl_socket_write_ready (clib_file_t * uf);
Dave Barach371e4e12016-07-08 09:38:52 -040065void vl_socket_api_send (vl_api_registration_t * rp, u8 * elem);
66void vl_socket_api_send_with_data (vl_api_registration_t * rp,
67 u8 * elem, u8 * data_vector);
68void vl_socket_api_send_with_length (vl_api_registration_t * rp,
69 u8 * elem, u32 msg_length);
70void vl_socket_api_send_with_length_no_free (vl_api_registration_t * rp,
71 u8 * elem, u32 msg_length);
Ed Warnickecb9cada2015-12-08 15:45:58 -070072u32 sockclnt_open_index (char *client_name, char *hostname, int port);
73void sockclnt_close_index (u32 index);
Dave Barach371e4e12016-07-08 09:38:52 -040074void vl_client_msg_api_send (vl_api_registration_t * cm, u8 * elem);
Ed Warnickecb9cada2015-12-08 15:45:58 -070075vl_api_registration_t *sockclnt_get_registration (u32 index);
76void socksvr_set_port (u16 port);
77void socksvr_set_bind_address (u32 bind_address);
78
79#endif /* included_vlibsocket_api_h */
Dave Barach371e4e12016-07-08 09:38:52 -040080
81/*
82 * fd.io coding-style-patch-verification: ON
83 *
84 * Local Variables:
85 * eval: (c-set-style "gnu")
86 * End:
87 */