blob: e0792270b533936cda06bade128b68d3670c1099 [file] [log] [blame]
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +02001/*
2 *------------------------------------------------------------------
3 * Copyright (c) 2017 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 _SOCKET_H_
Jakub Grajciar5e1f69a2018-04-12 13:56:29 +020019#define _SOCKET_H_
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +020020
21#include <memif_private.h>
22
23/* interface identification errors (disconnect messages)*/
24#define MEMIF_VER_ERR "incompatible version"
25#define MEMIF_ID_ERR "unmatched interface id"
26#define MEMIF_SLAVE_ERR "cannot connect to salve"
27#define MEMIF_CONN_ERR "already connected"
28#define MEMIF_MODE_ERR "mode mismatch"
29#define MEMIF_SECRET_ERR "incorrect secret"
30#define MEMIF_NOSECRET_ERR "secret required"
31
32/* socket.c */
33
34int memif_conn_fd_read_ready (memif_connection_t * c);
35
36int memif_conn_fd_write_ready (memif_connection_t * c);
37
38int memif_conn_fd_error (memif_connection_t * c);
39
40int memif_conn_fd_accept_ready (memif_socket_t * ms);
41
42int memif_read_ready (int fd);
43
44int memif_msg_send_disconnect (int fd, uint8_t * err_string,
45 uint32_t err_code);
46
47/* when compiling unit tests, compile functions without static keyword
48 and declare functions in header file */
49#ifdef MEMIF_UNIT_TEST
50#define static_fn
51
52int memif_msg_send (int fd, memif_msg_t * msg, int afd);
53
54int memif_msg_enq_ack (memif_connection_t * c);
55
56int memif_msg_send_hello (int fd);
57
58int memif_msg_enq_init (memif_connection_t * c);
59
60int memif_msg_enq_add_region (memif_connection_t * c, uint8_t region);
61
62int memif_msg_enq_add_ring (memif_connection_t * c, uint8_t index,
63 uint8_t dir);
64
65int memif_msg_receive_hello (memif_connection_t * c, memif_msg_t * msg);
66
67int memif_msg_receive_init (memif_socket_t * ms, int fd, memif_msg_t * msg);
68
69int memif_msg_receive_add_region (memif_connection_t * c, memif_msg_t * msg,
70 int fd);
71
72int memif_msg_receive_add_ring (memif_connection_t * c, memif_msg_t * msg,
73 int fd);
74
75int memif_msg_enq_connect (memif_connection_t * c);
76
77int memif_msg_enq_connected (memif_connection_t * c);
78
79int memif_msg_receive_connect (memif_connection_t * c, memif_msg_t * msg);
80
81int memif_msg_receive_connected (memif_connection_t * c, memif_msg_t * msg);
82
83int memif_msg_receive_disconnect (memif_connection_t * c, memif_msg_t * msg);
84
85#else
86#define static_fn static
87#endif /* MEMIF_UNIT_TEST */
88
89#endif /* _SOCKET_H_ */