FD.io VPP
v21.10.1-2-g0a485f517
Vector Packet Processing
wireguard.h
Go to the documentation of this file.
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_timer.h
>
21
22
#define WG_DEFAULT_DATA_SIZE 2048
23
24
extern
vlib_node_registration_t
wg_input_node
;
25
extern
vlib_node_registration_t
wg_output_tun_node
;
26
27
typedef
struct
wg_per_thread_data_t_
28
{
29
u8
data
[
WG_DEFAULT_DATA_SIZE
];
30
}
wg_per_thread_data_t
;
31
typedef
struct
32
{
33
/* convenience */
34
vlib_main_t
*
vlib_main
;
35
36
u16
msg_id_base
;
37
38
wg_index_table_t
index_table
;
39
40
u32
in_fq_index
;
41
u32
out_fq_index
;
42
43
wg_per_thread_data_t
*
per_thread_data
;
44
u8
feature_init
;
45
46
tw_timer_wheel_16t_2w_512sl_t
timer_wheel
;
47
}
wg_main_t
;
48
49
extern
wg_main_t
wg_main
;
50
51
#define WG_START_EVENT 1
52
void
wg_feature_init
(
wg_main_t
* wmp);
53
54
#endif
/* __included_wg_h__ */
55
56
/*
57
* fd.io coding-style-patch-verification: ON
58
*
59
* Local Variables:
60
* eval: (c-set-style "gnu")
61
* End:
62
*/
wireguard_index_table.h
wg_per_thread_data_t
struct wg_per_thread_data_t_ wg_per_thread_data_t
wg_output_tun_node
vlib_node_registration_t wg_output_tun_node
(constructor) VLIB_REGISTER_NODE (wg_output_tun_node)
Definition:
wireguard_output_tun.c:218
wg_main_t::index_table
wg_index_table_t index_table
Definition:
wireguard.h:38
u16
unsigned short u16
Definition:
types.h:57
wg_feature_init
void wg_feature_init(wg_main_t *wmp)
Definition:
wireguard_timer.c:407
wg_main_t::in_fq_index
u32 in_fq_index
Definition:
wireguard.h:40
wg_main_t::per_thread_data
wg_per_thread_data_t * per_thread_data
Definition:
wireguard.h:43
wg_main_t::feature_init
u8 feature_init
Definition:
wireguard.h:44
wg_input_node
vlib_node_registration_t wg_input_node
(constructor) VLIB_REGISTER_NODE (wg_input_node)
Definition:
wireguard_input.c:452
wg_index_table_t
Definition:
wireguard_index_table.h:21
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
wireguard_messages.h
wg_main_t::vlib_main
vlib_main_t * vlib_main
Definition:
wireguard.h:34
wg_main_t
Definition:
wireguard.h:31
wg_main_t::msg_id_base
u16 msg_id_base
Definition:
wireguard.h:36
wg_main_t::out_fq_index
u32 out_fq_index
Definition:
wireguard.h:41
u32
unsigned int u32
Definition:
types.h:88
vlib_main_t
Definition:
main.h:102
wg_per_thread_data_t_::data
u8 data[WG_DEFAULT_DATA_SIZE]
Definition:
wireguard.h:29
WG_DEFAULT_DATA_SIZE
#define WG_DEFAULT_DATA_SIZE
Definition:
wireguard.h:22
u8
unsigned char u8
Definition:
types.h:56
wg_per_thread_data_t_
Definition:
wireguard.h:27
wireguard_timer.h
wg_main
wg_main_t wg_main
Definition:
wireguard.c:26
wg_main_t::timer_wheel
tw_timer_wheel_16t_2w_512sl_t timer_wheel
Definition:
wireguard.h:46
src
plugins
wireguard
wireguard.h
Generated on Sat Jan 8 2022 10:35:56 for FD.io VPP by
1.8.17