dpif-netdev: use dpif_packet structure for packets
[cascardo/ovs.git] / lib / packet-dpif.h
1 /*
2  * Copyright (c) 2014 Nicira, Inc.
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 PACKET_DPIF_H
18 #define PACKET_DPIF_H 1
19
20 #include "ofpbuf.h"
21
22 #ifdef  __cplusplus
23 extern "C" {
24 #endif
25
26 /* A packet received from a netdev and passed to a dpif. */
27
28 struct dpif_packet {
29     struct ofpbuf ofpbuf;       /* Packet data. */
30 };
31
32 struct dpif_packet *dpif_packet_new_with_headroom(size_t size,
33                                                   size_t headroom);
34
35 struct dpif_packet *dpif_packet_clone_from_ofpbuf(const struct ofpbuf *b);
36
37 struct dpif_packet *dpif_packet_clone(struct dpif_packet *p);
38
39 static inline void dpif_packet_delete(struct dpif_packet *p)
40 {
41     struct ofpbuf *ofp = &p->ofpbuf;
42
43     ofpbuf_delete(ofp);
44 }
45
46 #ifdef  __cplusplus
47 }
48 #endif
49
50 #endif /* packet-dpif.h */