ip: fix udp/tcp checksum corner cases
[vpp.git] / src / plugins / oddbuf / oddbuf.h
1
2 /*
3  * oddbuf.h - skeleton vpp engine plug-in header file
4  *
5  * Copyright (c) <current-year> <your-organization>
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 #ifndef __included_oddbuf_h__
19 #define __included_oddbuf_h__
20
21 #include <vnet/vnet.h>
22 #include <vnet/ip/ip.h>
23 #include <vnet/udp/udp.h>
24 #include <vnet/ethernet/ethernet.h>
25
26 #include <vppinfra/hash.h>
27 #include <vppinfra/error.h>
28
29 typedef struct
30 {
31   /* API message ID base */
32   u16 msg_id_base;
33
34   /* on/off switch for the periodic function */
35   u8 periodic_timer_enabled;
36
37   /* config parameters */
38   int n_to_copy;
39   int second_chunk_offset;
40   int first_chunk_offset;
41
42   /* convenience */
43   vlib_main_t *vlib_main;
44   vnet_main_t *vnet_main;
45   ethernet_main_t *ethernet_main;
46 } oddbuf_main_t;
47
48 extern oddbuf_main_t oddbuf_main;
49
50 extern vlib_node_registration_t oddbuf_node;
51
52 #endif /* __included_oddbuf_h__ */
53
54 /*
55  * fd.io coding-style-patch-verification: ON
56  *
57  * Local Variables:
58  * eval: (c-set-style "gnu")
59  * End:
60  */