tunnel: Common types for IP tunnels
[vpp.git] / src / vnet / tunnel / tunnel.h
1 /*
2  * tunnel.h: shared definitions for tunnels.
3  *
4  * Copyright (c) 2019 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #ifndef __TUNNEL_H__
19 #define __TUNNEL_H__
20
21 #include <vlib/vlib.h>
22
23 #define foreach_tunnel_mode \
24   _(P2P, "point-to-point")      \
25   _(MP, "multi-point")          \
26
27 typedef enum tunnel_mode_t_
28 {
29 #define _(n, s) TUNNEL_MODE_##n,
30   foreach_tunnel_mode
31 #undef _
32 } __clib_packed tunnel_mode_t;
33
34 extern u8 *format_tunnel_mode (u8 * s, va_list * args);
35
36 /**
37  * Keep these idenitical to those in ipip.api
38  */
39 #define forech_tunnel_encap_decap_flag                     \
40   _(NONE, "none", 0x0)                              \
41   _(ENCAP_COPY_DF, "encap-copy-df", 0x1)            \
42   _(ENCAP_SET_DF, "encap-set-df", 0x2)              \
43   _(ENCAP_COPY_DSCP, "encap-copy-dscp", 0x4)        \
44   _(ENCAP_COPY_ECN, "encap-copy-ecn", 0x8)          \
45   _(DECAP_COPY_ECN, "decap-copy-ecn", 0x10)
46
47 typedef enum tunnel_encap_decap_flags_t_
48 {
49 #define _(a,b,c) TUNNEL_ENCAP_DECAP_FLAG_##a = c,
50   forech_tunnel_encap_decap_flag
51 #undef _
52 } __clib_packed tunnel_encap_decap_flags_t;
53
54 #define TUNNEL_FLAG_MASK (0x1f)
55
56 extern u8 *format_tunnel_encap_decap_flags (u8 * s, va_list * args);
57
58 #endif
59
60 /*
61  * fd.io coding-style-patch-verification: ON
62  *
63  * Local Variables:
64  * eval: (c-set-style "gnu")
65  * End:
66  */