Merge "VNF_Catalogue Codebase"
[samplevnf.git] / VNFs / DPPD-PROX / pkt_prototypes.h
1 /*
2 // Copyright (c) 2010-2017 Intel Corporation
3 //
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 #ifndef _PKT_PROTOTYPES_H_
18 #define _PKT_PROTOTYPES_H_
19
20 #include <rte_ip.h>
21
22 #include "gre.h"
23 #include "qinq.h"
24 #include "etypes.h"
25
26 static const struct gre_hdr gre_hdr_proto = {
27         .type = ETYPE_IPv4,
28         .version = 0,
29         .flags = 0,
30         .recur = 0,
31         .bits = GRE_KEY_PRESENT
32 };
33
34 static const struct ipv4_hdr tunnel_ip_proto = {
35         .version_ihl = 0x45,
36         .type_of_service = 0,
37         .packet_id = 0,
38         .fragment_offset = 0x40,
39         /* no fragmentation */
40         .time_to_live = 0x40,
41         /* gre protocol type */
42         .next_proto_id = IPPROTO_GRE,
43         .hdr_checksum = 0
44 };
45
46 static const struct qinq_hdr qinq_proto = {
47         .svlan.vlan_tci = 0,
48         .cvlan.vlan_tci = 0,
49         .svlan.eth_proto = ETYPE_8021ad,
50         .cvlan.eth_proto = ETYPE_VLAN,
51         .ether_type = ETYPE_IPv4
52 };
53
54 #endif /* _PKT_PROTOTYPES_H_ */