wireguard: initial implementation of wireguard protocol
[vpp.git] / src / plugins / wireguard / wireguard.h
1 /*
2  * Copyright (c) 2020 Doc.ai and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __included_wg_h__
16 #define __included_wg_h__
17
18 #include <wireguard/wireguard_index_table.h>
19 #include <wireguard/wireguard_messages.h>
20 #include <wireguard/wireguard_peer.h>
21
22 extern vlib_node_registration_t wg_input_node;
23 extern vlib_node_registration_t wg_output_tun_node;
24
25
26
27 typedef struct
28 {
29   /* convenience */
30   vlib_main_t *vlib_main;
31
32   u16 msg_id_base;
33
34   // Peers pool
35   wg_peer_t *peers;
36   wg_index_table_t index_table;
37
38 } wg_main_t;
39
40 extern wg_main_t wg_main;
41
42 #endif /* __included_wg_h__ */
43
44 /*
45  * fd.io coding-style-patch-verification: ON
46  *
47  * Local Variables:
48  * eval: (c-set-style "gnu")
49  * End:
50  */