Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / include / openflow / openflow-1.2.h
1 /* Copyright (c) 2008, 2011, 2012, 2013 The Board of Trustees of The Leland Stanford
2  * Junior University
3  *
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  *
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 /*
35  * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc.
36  * Copyright (c) 2012 Horms Solutions Ltd.
37  *
38  * Licensed under the Apache License, Version 2.0 (the "License");
39  * you may not use this file except in compliance with the License.
40  * You may obtain a copy of the License at:
41  *
42  *     http://www.apache.org/licenses/LICENSE-2.0
43  *
44  * Unless required by applicable law or agreed to in writing, software
45  * distributed under the License is distributed on an "AS IS" BASIS,
46  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
47  * See the License for the specific language governing permissions and
48  * limitations under the License.
49  */
50
51 /* OpenFlow: protocol between controller and datapath. */
52
53 #ifndef OPENFLOW_12_H
54 #define OPENFLOW_12_H 1
55
56 #include "openflow/openflow-1.1.h"
57
58 /* Error type for experimenter error messages. */
59 #define OFPET12_EXPERIMENTER 0xffff
60
61 /*
62  * OXM Class IDs.
63  * The high order bit differentiate reserved classes from member classes.
64  * Classes 0x0000 to 0x7FFF are member classes, allocated by ONF.
65  * Classes 0x8000 to 0xFFFE are reserved classes, reserved for standardisation.
66  */
67 enum ofp12_oxm_class {
68     OFPXMC12_NXM_0          = 0x0000, /* Backward compatibility with NXM */
69     OFPXMC12_NXM_1          = 0x0001, /* Backward compatibility with NXM */
70     OFPXMC12_OPENFLOW_BASIC = 0x8000, /* Basic class for OpenFlow */
71     OFPXMC12_EXPERIMENTER   = 0xffff, /* Experimenter class */
72 };
73
74 /* OXM Flow match field types for OpenFlow basic class. */
75 enum oxm12_ofb_match_fields {
76     OFPXMT12_OFB_IN_PORT,        /* Switch input port. */
77     OFPXMT12_OFB_IN_PHY_PORT,    /* Switch physical input port. */
78     OFPXMT12_OFB_METADATA,       /* Metadata passed between tables. */
79     OFPXMT12_OFB_ETH_DST,        /* Ethernet destination address. */
80     OFPXMT12_OFB_ETH_SRC,        /* Ethernet source address. */
81     OFPXMT12_OFB_ETH_TYPE,       /* Ethernet frame type. */
82     OFPXMT12_OFB_VLAN_VID,       /* VLAN id. */
83     OFPXMT12_OFB_VLAN_PCP,       /* VLAN priority. */
84     OFPXMT12_OFB_IP_DSCP,        /* IP DSCP (6 bits in ToS field). */
85     OFPXMT12_OFB_IP_ECN,         /* IP ECN (2 bits in ToS field). */
86     OFPXMT12_OFB_IP_PROTO,       /* IP protocol. */
87     OFPXMT12_OFB_IPV4_SRC,       /* IPv4 source address. */
88     OFPXMT12_OFB_IPV4_DST,       /* IPv4 destination address. */
89     OFPXMT12_OFB_TCP_SRC,        /* TCP source port. */
90     OFPXMT12_OFB_TCP_DST,        /* TCP destination port. */
91     OFPXMT12_OFB_UDP_SRC,        /* UDP source port. */
92     OFPXMT12_OFB_UDP_DST,        /* UDP destination port. */
93     OFPXMT12_OFB_SCTP_SRC,       /* SCTP source port. */
94     OFPXMT12_OFB_SCTP_DST,       /* SCTP destination port. */
95     OFPXMT12_OFB_ICMPV4_TYPE,    /* ICMP type. */
96     OFPXMT12_OFB_ICMPV4_CODE,    /* ICMP code. */
97     OFPXMT12_OFB_ARP_OP,         /* ARP opcode. */
98     OFPXMT12_OFB_ARP_SPA,        /* ARP source IPv4 address. */
99     OFPXMT12_OFB_ARP_TPA,        /* ARP target IPv4 address. */
100     OFPXMT12_OFB_ARP_SHA,        /* ARP source hardware address. */
101     OFPXMT12_OFB_ARP_THA,        /* ARP target hardware address. */
102     OFPXMT12_OFB_IPV6_SRC,       /* IPv6 source address. */
103     OFPXMT12_OFB_IPV6_DST,       /* IPv6 destination address. */
104     OFPXMT12_OFB_IPV6_FLABEL,    /* IPv6 Flow Label */
105     OFPXMT12_OFB_ICMPV6_TYPE,    /* ICMPv6 type. */
106     OFPXMT12_OFB_ICMPV6_CODE,    /* ICMPv6 code. */
107     OFPXMT12_OFB_IPV6_ND_TARGET, /* Target address for ND. */
108     OFPXMT12_OFB_IPV6_ND_SLL,    /* Source link-layer for ND. */
109     OFPXMT12_OFB_IPV6_ND_TLL,    /* Target link-layer for ND. */
110     OFPXMT12_OFB_MPLS_LABEL,     /* MPLS label. */
111     OFPXMT12_OFB_MPLS_TC,        /* MPLS TC. */
112 #define OFPXMT12_MASK ((1ULL << (OFPXMT12_OFB_MPLS_TC + 1)) - 1)
113
114     /* Following added in OpenFlow 1.3 */
115     OFPXMT13_OFB_MPLS_BOS,       /* MPLS BoS bit. */
116     OFPXMT13_OFB_PBB_ISID,       /* PBB I-SID. */
117     OFPXMT13_OFB_TUNNEL_ID,      /* Logical Port Metadata */
118     OFPXMT13_OFB_IPV6_EXTHDR,    /* IPv6 Extension Header pseudo-field */
119 #define OFPXMT13_MASK ((1ULL << (OFPXMT13_OFB_IPV6_EXTHDR + 1)) - 1)
120 };
121
122 /* OXM implementation makes use of NXM as they are the same format
123  * with different field definitions
124  */
125
126 #define OXM_HEADER(FIELD, LENGTH) \
127     NXM_HEADER(OFPXMC12_OPENFLOW_BASIC, FIELD, LENGTH)
128 #define OXM_HEADER_W(FIELD, LENGTH) \
129     NXM_HEADER_W(OFPXMC12_OPENFLOW_BASIC, FIELD, LENGTH)
130
131 #define IS_OXM_HEADER(header) (NXM_VENDOR(header) == OFPXMC12_OPENFLOW_BASIC)
132
133 #define OXM_OF_IN_PORT        OXM_HEADER   (OFPXMT12_OFB_IN_PORT, 4)
134 #define OXM_OF_IN_PHY_PORT    OXM_HEADER   (OFPXMT12_OFB_IN_PHY_PORT, 4)
135 #define OXM_OF_METADATA       OXM_HEADER   (OFPXMT12_OFB_METADATA, 8)
136 #define OXM_OF_ETH_DST        OXM_HEADER   (OFPXMT12_OFB_ETH_DST, 6)
137 #define OXM_OF_ETH_DST_W      OXM_HEADER_W (OFPXMT12_OFB_ETH_DST, 6)
138 #define OXM_OF_ETH_SRC        OXM_HEADER   (OFPXMT12_OFB_ETH_SRC, 6)
139 #define OXM_OF_ETH_SRC_W      OXM_HEADER_W (OFPXMT12_OFB_ETH_SRC, 6)
140 #define OXM_OF_ETH_TYPE       OXM_HEADER   (OFPXMT12_OFB_ETH_TYPE, 2)
141 #define OXM_OF_VLAN_VID       OXM_HEADER   (OFPXMT12_OFB_VLAN_VID, 2)
142 #define OXM_OF_VLAN_VID_W     OXM_HEADER_W (OFPXMT12_OFB_VLAN_VID, 2)
143 #define OXM_OF_VLAN_PCP       OXM_HEADER   (OFPXMT12_OFB_VLAN_PCP, 1)
144 #define OXM_OF_IP_DSCP        OXM_HEADER   (OFPXMT12_OFB_IP_DSCP, 1)
145 #define OXM_OF_IP_ECN         OXM_HEADER   (OFPXMT12_OFB_IP_ECN, 1)
146 #define OXM_OF_IP_PROTO       OXM_HEADER   (OFPXMT12_OFB_IP_PROTO, 1)
147 #define OXM_OF_IPV4_SRC       OXM_HEADER   (OFPXMT12_OFB_IPV4_SRC, 4)
148 #define OXM_OF_IPV4_SRC_W     OXM_HEADER_W (OFPXMT12_OFB_IPV4_SRC, 4)
149 #define OXM_OF_IPV4_DST       OXM_HEADER   (OFPXMT12_OFB_IPV4_DST, 4)
150 #define OXM_OF_IPV4_DST_W     OXM_HEADER_W (OFPXMT12_OFB_IPV4_DST, 4)
151 #define OXM_OF_TCP_SRC        OXM_HEADER   (OFPXMT12_OFB_TCP_SRC, 2)
152 #define OXM_OF_TCP_DST        OXM_HEADER   (OFPXMT12_OFB_TCP_DST, 2)
153 #define OXM_OF_UDP_SRC        OXM_HEADER   (OFPXMT12_OFB_UDP_SRC, 2)
154 #define OXM_OF_UDP_DST        OXM_HEADER   (OFPXMT12_OFB_UDP_DST, 2)
155 #define OXM_OF_SCTP_SRC       OXM_HEADER   (OFPXMT12_OFB_SCTP_SRC, 2)
156 #define OXM_OF_SCTP_DST       OXM_HEADER   (OFPXMT12_OFB_SCTP_DST, 2)
157 #define OXM_OF_ICMPV4_TYPE    OXM_HEADER   (OFPXMT12_OFB_ICMPV4_TYPE, 1)
158 #define OXM_OF_ICMPV4_CODE    OXM_HEADER   (OFPXMT12_OFB_ICMPV4_CODE, 1)
159 #define OXM_OF_ARP_OP         OXM_HEADER   (OFPXMT12_OFB_ARP_OP, 2)
160 #define OXM_OF_ARP_SPA        OXM_HEADER   (OFPXMT12_OFB_ARP_SPA, 4)
161 #define OXM_OF_ARP_SPA_W      OXM_HEADER_W (OFPXMT12_OFB_ARP_SPA, 4)
162 #define OXM_OF_ARP_TPA        OXM_HEADER   (OFPXMT12_OFB_ARP_TPA, 4)
163 #define OXM_OF_ARP_TPA_W      OXM_HEADER_W (OFPXMT12_OFB_ARP_TPA, 4)
164 #define OXM_OF_ARP_SHA        OXM_HEADER   (OFPXMT12_OFB_ARP_SHA, 6)
165 #define OXM_OF_ARP_SHA_W      OXM_HEADER_W (OFPXMT12_OFB_ARP_SHA, 6)
166 #define OXM_OF_ARP_THA        OXM_HEADER   (OFPXMT12_OFB_ARP_THA, 6)
167 #define OXM_OF_ARP_THA_W      OXM_HEADER_W (OFPXMT12_OFB_ARP_THA, 6)
168 #define OXM_OF_IPV6_SRC       OXM_HEADER   (OFPXMT12_OFB_IPV6_SRC, 16)
169 #define OXM_OF_IPV6_SRC_W     OXM_HEADER_W (OFPXMT12_OFB_IPV6_SRC, 16)
170 #define OXM_OF_IPV6_DST       OXM_HEADER   (OFPXMT12_OFB_IPV6_DST, 16)
171 #define OXM_OF_IPV6_DST_W     OXM_HEADER_W (OFPXMT12_OFB_IPV6_DST, 16)
172 #define OXM_OF_IPV6_FLABEL    OXM_HEADER   (OFPXMT12_OFB_IPV6_FLABEL, 4)
173 #define OXM_OF_IPV6_FLABEL_W  OXM_HEADER_W (OFPXMT12_OFB_IPV6_FLABEL, 4)
174 #define OXM_OF_ICMPV6_TYPE    OXM_HEADER   (OFPXMT12_OFB_ICMPV6_TYPE, 1)
175 #define OXM_OF_ICMPV6_CODE    OXM_HEADER   (OFPXMT12_OFB_ICMPV6_CODE, 1)
176 #define OXM_OF_IPV6_ND_TARGET OXM_HEADER   (OFPXMT12_OFB_IPV6_ND_TARGET, 16)
177 #define OXM_OF_IPV6_ND_SLL    OXM_HEADER   (OFPXMT12_OFB_IPV6_ND_SLL, 6)
178 #define OXM_OF_IPV6_ND_TLL    OXM_HEADER   (OFPXMT12_OFB_IPV6_ND_TLL, 6)
179 #define OXM_OF_MPLS_LABEL     OXM_HEADER   (OFPXMT12_OFB_MPLS_LABEL, 4)
180 #define OXM_OF_MPLS_TC        OXM_HEADER   (OFPXMT12_OFB_MPLS_TC, 1)
181 #define OXM_OF_MPLS_BOS       OXM_HEADER   (OFPXMT13_OFB_MPLS_BOS, 1)
182 #define OXM_OF_PBB_ISID       OXM_HEADER   (OFPXMT12_OFB_PBB_ISID, 3)
183 #define OXM_OF_PBB_ISID_W     OXM_HEADER_W (OFPXMT12_OFB_PBB_ISID, 3)
184 #define OXM_OF_TUNNEL_ID      OXM_HEADER   (OFPXMT13_OFB_TUNNEL_ID, 8)
185 #define OXM_OF_TUNNEL_ID_W    OXM_HEADER_W (OFPXMT13_OFB_TUNNEL_ID, 8)
186 #define OXM_OF_IPV6_EXTHDR    OXM_HEADER   (OFPXMT13_OFB_IPV6_EXTHDR, 2)
187 #define OXM_OF_IPV6_EXTHDR_W  OXM_HEADER_W (OFPXMT13_OFB_IPV6_EXTHDR, 2)
188
189 /* The VLAN id is 12-bits, so we can use the entire 16 bits to indicate
190  * special conditions.
191  */
192 enum ofp12_vlan_id {
193     OFPVID12_PRESENT = 0x1000, /* Bit that indicate that a VLAN id is set */
194     OFPVID12_NONE    = 0x0000, /* No VLAN id was set. */
195 };
196
197 /* Bit definitions for IPv6 Extension Header pseudo-field. */
198 enum ofp12_ipv6exthdr_flags {
199     OFPIEH12_NONEXT = 1 << 0,   /* "No next header" encountered. */
200     OFPIEH12_ESP    = 1 << 1,   /* Encrypted Sec Payload header present. */
201     OFPIEH12_AUTH   = 1 << 2,   /* Authentication header present. */
202     OFPIEH12_DEST   = 1 << 3,   /* 1 or 2 dest headers present. */
203     OFPIEH12_FRAG   = 1 << 4,   /* Fragment header present. */
204     OFPIEH12_ROUTER = 1 << 5,   /* Router header present. */
205     OFPIEH12_HOP    = 1 << 6,   /* Hop-by-hop header present. */
206     OFPIEH12_UNREP  = 1 << 7,   /* Unexpected repeats encountered. */
207     OFPIEH12_UNSEQ  = 1 << 8    /* Unexpected sequencing encountered. */
208 };
209
210 /* Header for OXM experimenter match fields. */
211 struct ofp12_oxm_experimenter_header {
212     ovs_be32 oxm_header;   /* oxm_class = OFPXMC_EXPERIMENTER */
213     ovs_be32 experimenter; /* Experimenter ID which takes the same
214                               form as in struct ofp11_experimenter_header. */
215 };
216 OFP_ASSERT(sizeof(struct ofp12_oxm_experimenter_header) == 8);
217
218 enum ofp12_action_type {
219     OFPAT12_SET_FIELD = 25,     /* Set a header field using OXM TLV format. */
220 };
221
222 enum ofp12_controller_max_len {
223     OFPCML12_MAX       = 0xffe5, /* maximum max_len value which can be used
224                                   * to request a specific byte length. */
225     OFPCML12_NO_BUFFER = 0xffff  /* indicates that no buffering should be
226                                   * applied and the whole packet is to be
227                                   * sent to the controller. */
228 };
229
230 /* Action structure for OFPAT12_SET_FIELD. */
231 struct ofp12_action_set_field {
232     ovs_be16 type;                  /* OFPAT12_SET_FIELD. */
233     ovs_be16 len;                   /* Length is padded to 64 bits. */
234     ovs_be32 dst;                   /* OXM TLV header */
235     /* Followed by:
236      * - Exactly ((oxm_len + 4) + 7)/8*8 - (oxm_len + 4) (between 0 and 7)
237      *   bytes of all-zero bytes
238      */
239 };
240 OFP_ASSERT(sizeof(struct ofp12_action_set_field) == 8);
241
242 /* OpenFlow 1.2 specific flags
243  * (struct ofp12_flow_mod, member flags). */
244 enum ofp12_flow_mod_flags {
245     OFPFF12_RESET_COUNTS  = 1 << 2   /* Reset flow packet and byte counts. */
246 };
247
248 /* OpenFlow 1.2 specific capabilities
249  * (struct ofp_switch_features, member capabilities). */
250 enum ofp12_capabilities {
251     OFPC12_PORT_BLOCKED   = 1 << 8   /* Switch will block looping ports. */
252 };
253
254 /* Full description for a queue. */
255 struct ofp12_packet_queue {
256     ovs_be32 queue_id;     /* id for the specific queue. */
257     ovs_be32 port;         /* Port this queue is attached to. */
258     ovs_be16 len;          /* Length in bytes of this queue desc. */
259     uint8_t pad[6];        /* 64-bit alignment. */
260     /* Followed by any number of queue properties expressed using
261      * ofp_queue_prop_header, to fill out a total of 'len' bytes. */
262 };
263 OFP_ASSERT(sizeof(struct ofp12_packet_queue) == 16);
264
265 /* Body of reply to OFPST_TABLE request. */
266 struct ofp12_table_stats {
267     uint8_t table_id;        /* Identifier of table.  Lower numbered tables
268                                 are consulted first. */
269     uint8_t pad[7];          /* Align to 64-bits. */
270     char name[OFP_MAX_TABLE_NAME_LEN];
271     ovs_be64 match;          /* Bitmap of (1 << OFPXMT_*) that indicate the
272                                 fields the table can match on. */
273     ovs_be64 wildcards;      /* Bitmap of (1 << OFPXMT_*) wildcards that are
274                                 supported by the table. */
275     ovs_be32 write_actions;  /* Bitmap of OFPAT_* that are supported
276                                 by the table with OFPIT_WRITE_ACTIONS. */
277     ovs_be32 apply_actions;  /* Bitmap of OFPAT_* that are supported
278                                 by the table with OFPIT_APPLY_ACTIONS. */
279     ovs_be64 write_setfields;/* Bitmap of (1 << OFPXMT_*) header fields that
280                                 can be set with OFPIT_WRITE_ACTIONS. */
281     ovs_be64 apply_setfields;/* Bitmap of (1 << OFPXMT_*) header fields that
282                                 can be set with OFPIT_APPLY_ACTIONS. */
283     ovs_be64 metadata_match; /* Bits of metadata table can match. */
284     ovs_be64 metadata_write; /* Bits of metadata table can write. */
285     ovs_be32 instructions;   /* Bitmap of OFPIT_* values supported. */
286     ovs_be32 config;         /* Bitmap of OFPTC_* values */
287     ovs_be32 max_entries;    /* Max number of entries supported. */
288     ovs_be32 active_count;   /* Number of active entries. */
289     ovs_be64 lookup_count;   /* Number of packets looked up in table. */
290     ovs_be64 matched_count;  /* Number of packets that hit table. */
291 };
292 OFP_ASSERT(sizeof(struct ofp12_table_stats) == 128);
293
294 /* Body of reply to OFPST12_GROUP_FEATURES request. Group features. */
295 struct ofp12_group_features_stats {
296     ovs_be32  types;           /* Bitmap of OFPGT11_* values supported. */
297     ovs_be32  capabilities;    /* Bitmap of OFPGFC12_* capability supported. */
298     ovs_be32  max_groups[4];   /* Maximum number of groups for each type. */
299     ovs_be32  actions[4];      /* Bitmaps of OFPAT_* that are supported. */
300 };
301 OFP_ASSERT(sizeof(struct ofp12_group_features_stats) == 40);
302
303 /* Group configuration flags */
304 enum ofp12_group_capabilities {
305     OFPGFC12_SELECT_WEIGHT   = 1 << 0, /* Support weight for select groups */
306     OFPGFC12_SELECT_LIVENESS = 1 << 1, /* Support liveness for select groups */
307     OFPGFC12_CHAINING        = 1 << 2, /* Support chaining groups */
308     OFPGFC12_CHAINING_CHECKS = 1 << 3, /* Check chaining for loops and delete */
309 };
310
311 /* Body for ofp12_stats_request/reply of type OFPST_EXPERIMENTER. */
312 struct ofp12_experimenter_stats_header {
313     ovs_be32 experimenter;    /* Experimenter ID which takes the same form
314                                  as in struct ofp_experimenter_header. */
315     ovs_be32 exp_type;        /* Experimenter defined. */
316     /* Experimenter-defined arbitrary additional data. */
317 };
318 OFP_ASSERT(sizeof(struct ofp12_experimenter_stats_header) == 8);
319
320 /* Role request and reply message. */
321 struct ofp12_role_request {
322     ovs_be32 role;            /* One of OFPCR12_ROLE_*. */
323     uint8_t pad[4];           /* Align to 64 bits. */
324     ovs_be64 generation_id;   /* Master Election Generation Id */
325 };
326 OFP_ASSERT(sizeof(struct ofp12_role_request) == 16);
327
328 /* Controller roles. */
329 enum ofp12_controller_role {
330     OFPCR12_ROLE_NOCHANGE,    /* Don't change current role. */
331     OFPCR12_ROLE_EQUAL,       /* Default role, full access. */
332     OFPCR12_ROLE_MASTER,      /* Full access, at most one master. */
333     OFPCR12_ROLE_SLAVE,       /* Read-only access. */
334 };
335
336 /* Packet received on port (datapath -> controller). */
337 struct ofp12_packet_in {
338     ovs_be32 buffer_id;     /* ID assigned by datapath. */
339     ovs_be16 total_len;     /* Full length of frame. */
340     uint8_t reason;         /* Reason packet is being sent (one of OFPR_*) */
341     uint8_t table_id;       /* ID of the table that was looked up */
342     /* Followed by:
343      *   - Match
344      *   - Exactly 2 all-zero padding bytes, then
345      *   - An Ethernet frame whose length is inferred from header.length.
346      * The padding bytes preceding the Ethernet frame ensure that the IP
347      * header (if any) following the Ethernet header is 32-bit aligned.
348      */
349     /* struct ofp12_match match; */
350     /* uint8_t pad[2];         Align to 64 bit + 16 bit */
351     /* uint8_t data[0];        Ethernet frame */
352 };
353 OFP_ASSERT(sizeof(struct ofp12_packet_in) == 8);
354
355 /* Flow removed (datapath -> controller). */
356 struct ofp12_flow_removed {
357     ovs_be64 cookie;          /* Opaque controller-issued identifier. */
358
359     ovs_be16 priority;        /* Priority level of flow entry. */
360     uint8_t reason;           /* One of OFPRR_*. */
361     uint8_t table_id;         /* ID of the table */
362
363     ovs_be32 duration_sec;    /* Time flow was alive in seconds. */
364     ovs_be32 duration_nsec;   /* Time flow was alive in nanoseconds beyond
365                                  duration_sec. */
366     ovs_be16 idle_timeout;    /* Idle timeout from original flow mod. */
367     ovs_be16 hard_timeout;    /* Hard timeout from original flow mod. */
368     ovs_be64 packet_count;
369     ovs_be64 byte_count;
370     /* struct ofp12_match match;  Description of fields. Variable size. */
371 };
372 OFP_ASSERT(sizeof(struct ofp12_flow_removed) == 40);
373
374 #endif /* openflow/openflow-1.2.h */