]> git.proxmox.com Git - mirror_ovs.git/blame - lib/flow.h
lib/ofp-util: Restore the check for minus sign in port number strings.
[mirror_ovs.git] / lib / flow.h
CommitLineData
064af421 1/*
8bfd0fda 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
064af421 3 *
a14bc59f
BP
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:
064af421 7 *
a14bc59f
BP
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.
064af421
BP
15 */
16#ifndef FLOW_H
17#define FLOW_H 1
18
7f3adc00 19#include <sys/types.h>
064af421
BP
20#include <netinet/in.h>
21#include <stdbool.h>
22#include <stdint.h>
23#include <string.h>
c906cedf 24#include "byte-order.h"
659586ef 25#include "openflow/nicira-ext.h"
064af421
BP
26#include "openflow/openflow.h"
27#include "hash.h"
064af421
BP
28#include "util.h"
29
c97fb132 30struct dpif_flow_stats;
064af421 31struct ds;
b63f2ea7 32struct flow_wildcards;
5cb7a798 33struct minimask;
064af421 34struct ofpbuf;
b5e7e61a 35struct pkt_metadata;
064af421 36
a877206f
EJ
37/* This sequence number should be incremented whenever anything involving flows
38 * or the wildcarding of flows changes. This will cause build assertion
39 * failures in places which likely need to be updated. */
a79f29f2 40#define FLOW_WC_SEQ 25
a877206f 41
e9358af6 42#define FLOW_N_REGS 8
b6c9e612
BP
43BUILD_ASSERT_DECL(FLOW_N_REGS <= NXM_NX_MAX_REGS);
44
36956a7d
BP
45/* Used for struct flow's dl_type member for frames that have no Ethernet
46 * type, that is, pure 802.2 frames. */
47#define FLOW_DL_TYPE_NONE 0x5ff
48
7257b535 49/* Fragment bits, used for IPv4 and IPv6, always zero for non-IP flows. */
eadef313
JP
50#define FLOW_NW_FRAG_ANY (1 << 0) /* Set for any IP frag. */
51#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
52#define FLOW_NW_FRAG_MASK (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
7257b535 53
eadef313
JP
54BUILD_ASSERT_DECL(FLOW_NW_FRAG_ANY == NX_IP_FRAG_ANY);
55BUILD_ASSERT_DECL(FLOW_NW_FRAG_LATER == NX_IP_FRAG_LATER);
7257b535 56
296e07ac
JG
57#define FLOW_TNL_F_DONT_FRAGMENT (1 << 0)
58#define FLOW_TNL_F_CSUM (1 << 1)
59#define FLOW_TNL_F_KEY (1 << 2)
4fe3445a
PS
60
61const char *flow_tun_flag_to_string(uint32_t flags);
62
296e07ac
JG
63struct flow_tnl {
64 ovs_be64 tun_id;
65 ovs_be32 ip_src;
66 ovs_be32 ip_dst;
67 uint16_t flags;
68 uint8_t ip_tos;
69 uint8_t ip_ttl;
70};
71
4e022ec0
AW
72/* Unfortunately, a "struct flow" sometimes has to handle OpenFlow port
73 * numbers and other times datapath (dpif) port numbers. This union allows
74 * access to both. */
75union flow_in_port {
4e022ec0 76 odp_port_t odp_port;
b5e7e61a 77 ofp_port_t ofp_port;
4e022ec0
AW
78};
79
8bfd0fda
BP
80/* Maximum number of supported MPLS labels. */
81#define FLOW_MAX_MPLS_LABELS 3
82
ddbfda84 83/*
94639963
JR
84 * A flow in the network.
85 *
86 * Must be initialized to all zeros to make any compiler-induced padding
87 * zeroed. Helps also in keeping unused fields (such as mutually exclusive
88 * IPv4 and IPv6 addresses) zeroed out.
89 *
90 * The meaning of 'in_port' is context-dependent. In most cases, it is a
91 * 16-bit OpenFlow 1.0 port number. In the software datapath interface (dpif)
92 * layer and its implementations (e.g. dpif-linux, dpif-netdev), it is instead
93 * a 32-bit datapath port number.
476f36e8
JR
94 *
95 * The fields are organized in four segments to facilitate staged lookup, where
96 * lower layer fields are first used to determine if the later fields need to
97 * be looked at. This enables better wildcarding for datapath flows.
94639963 98 */
14608a15 99struct flow {
476f36e8 100 /* L1 */
296e07ac 101 struct flow_tnl tunnel; /* Encapsulating tunnel parameters. */
969fc56c 102 ovs_be64 metadata; /* OpenFlow Metadata. */
476f36e8
JR
103 uint32_t regs[FLOW_N_REGS]; /* Registers. */
104 uint32_t skb_priority; /* Packet priority for QoS. */
105 uint32_t pkt_mark; /* Packet mark. */
1c1764f9 106 uint32_t recirc_id; /* Must be exact match. */
476f36e8
JR
107 union flow_in_port in_port; /* Input port.*/
108
109 /* L2 */
110 uint8_t dl_src[6]; /* Ethernet source address. */
111 uint8_t dl_dst[6]; /* Ethernet destination address. */
112 ovs_be16 dl_type; /* Ethernet frame type. */
113 ovs_be16 vlan_tci; /* If 802.1Q, TCI | VLAN_CFI; otherwise 0. */
8bfd0fda 114 ovs_be32 mpls_lse[FLOW_MAX_MPLS_LABELS]; /* MPLS label stack entry. */
476f36e8
JR
115
116 /* L3 */
5145475f
JP
117 struct in6_addr ipv6_src; /* IPv6 source address. */
118 struct in6_addr ipv6_dst; /* IPv6 destination address. */
119 struct in6_addr nd_target; /* IPv6 neighbor discovery (ND) target. */
476f36e8 120 ovs_be32 ipv6_label; /* IPv6 flow label. */
d31f1109
JP
121 ovs_be32 nw_src; /* IPv4 source address. */
122 ovs_be32 nw_dst; /* IPv4 destination address. */
476f36e8 123 uint8_t nw_frag; /* FLOW_FRAG_* flags. */
eadef313 124 uint8_t nw_tos; /* IP ToS (including DSCP and ECN). */
476f36e8
JR
125 uint8_t nw_ttl; /* IP TTL/Hop Limit. */
126 uint8_t nw_proto; /* IP protocol or low 8 bits of ARP opcode. */
685a51a5
JP
127 uint8_t arp_sha[6]; /* ARP/ND source hardware address. */
128 uint8_t arp_tha[6]; /* ARP/ND target hardware address. */
476f36e8
JR
129 ovs_be16 tcp_flags; /* TCP flags. With L3 to avoid matching L4. */
130 ovs_be16 pad; /* Padding. */
8bfd0fda 131
476f36e8 132 /* L4 */
1c1764f9
EJ
133 uint32_t dp_hash; /* Datapath computed hash value. The exact
134 computation is opaque to the user space.*/
476f36e8
JR
135 ovs_be16 tp_src; /* TCP/UDP/SCTP source port. */
136 ovs_be16 tp_dst; /* TCP/UDP/SCTP destination port.
137 * Keep last for the BUILD_ASSERT_DECL below */
14608a15 138};
296e07ac 139BUILD_ASSERT_DECL(sizeof(struct flow) % 4 == 0);
16c6d0c3 140
659c2346
BP
141#define FLOW_U32S (sizeof(struct flow) / 4)
142
16c6d0c3 143/* Remember to update FLOW_WC_SEQ when changing 'struct flow'. */
476f36e8 144BUILD_ASSERT_DECL(offsetof(struct flow, tp_dst) + 2
a79f29f2
AZ
145 == sizeof(struct flow_tnl) + 172
146 && FLOW_WC_SEQ == 25);
476f36e8
JR
147
148/* Incremental points at which flow classification may be performed in
149 * segments.
150 * This is located here since this is dependent on the structure of the
151 * struct flow defined above:
79428250 152 * Each offset must be on a distinct, successive U32 boundary strictly
476f36e8
JR
153 * within the struct flow. */
154enum {
155 FLOW_SEGMENT_1_ENDS_AT = offsetof(struct flow, dl_src),
8bfd0fda 156 FLOW_SEGMENT_2_ENDS_AT = offsetof(struct flow, ipv6_src),
1c1764f9 157 FLOW_SEGMENT_3_ENDS_AT = offsetof(struct flow, dp_hash),
476f36e8
JR
158};
159BUILD_ASSERT_DECL(FLOW_SEGMENT_1_ENDS_AT % 4 == 0);
160BUILD_ASSERT_DECL(FLOW_SEGMENT_2_ENDS_AT % 4 == 0);
161BUILD_ASSERT_DECL(FLOW_SEGMENT_3_ENDS_AT % 4 == 0);
162BUILD_ASSERT_DECL( 0 < FLOW_SEGMENT_1_ENDS_AT);
163BUILD_ASSERT_DECL(FLOW_SEGMENT_1_ENDS_AT < FLOW_SEGMENT_2_ENDS_AT);
164BUILD_ASSERT_DECL(FLOW_SEGMENT_2_ENDS_AT < FLOW_SEGMENT_3_ENDS_AT);
165BUILD_ASSERT_DECL(FLOW_SEGMENT_3_ENDS_AT < sizeof(struct flow));
166
167extern const uint8_t flow_segment_u32s[];
14608a15 168
42edbe39 169/* Represents the metadata fields of struct flow. */
5d6c3af0 170struct flow_metadata {
a79f29f2
AZ
171 uint32_t dp_hash; /* Datapath computed hash field. */
172 uint32_t recirc_id; /* Recirculation ID. */
5d6c3af0 173 ovs_be64 tun_id; /* Encapsulating tunnel ID. */
0ad90c84
JR
174 ovs_be32 tun_src; /* Tunnel outer IPv4 src addr */
175 ovs_be32 tun_dst; /* Tunnel outer IPv4 dst addr */
42edbe39 176 ovs_be64 metadata; /* OpenFlow 1.1+ metadata field. */
5d6c3af0 177 uint32_t regs[FLOW_N_REGS]; /* Registers. */
ac923e91 178 uint32_t pkt_mark; /* Packet mark. */
4e022ec0 179 ofp_port_t in_port; /* OpenFlow port or zero. */
5d6c3af0
EJ
180};
181
b5e7e61a 182void flow_extract(struct ofpbuf *, const struct pkt_metadata *md,
4e022ec0 183 struct flow *);
b02475c5 184
993410fb 185void flow_zero_wildcards(struct flow *, const struct flow_wildcards *);
d8d9c698 186void flow_unwildcard_tp_ports(const struct flow *, struct flow_wildcards *);
5d6c3af0 187void flow_get_metadata(const struct flow *, struct flow_metadata *);
993410fb 188
ae412e7d 189char *flow_to_string(const struct flow *);
4fe3445a
PS
190void format_flags(struct ds *ds, const char *(*bit_to_string)(uint32_t),
191 uint32_t flags, char del);
61bf6666
JR
192void format_flags_masked(struct ds *ds, const char *name,
193 const char *(*bit_to_string)(uint32_t),
194 uint32_t flags, uint32_t mask);
4fe3445a 195
ae412e7d
BP
196void flow_format(struct ds *, const struct flow *);
197void flow_print(FILE *, const struct flow *);
79049a24 198static inline int flow_compare_3way(const struct flow *, const struct flow *);
ae412e7d
BP
199static inline bool flow_equal(const struct flow *, const struct flow *);
200static inline size_t flow_hash(const struct flow *, uint32_t basis);
064af421 201
fb0451d9 202void flow_set_dl_vlan(struct flow *, ovs_be16 vid);
cc34bc8c 203void flow_set_vlan_vid(struct flow *, ovs_be16 vid);
3719455c
BP
204void flow_set_vlan_pcp(struct flow *, uint8_t pcp);
205
8bfd0fda
BP
206int flow_count_mpls_labels(const struct flow *, struct flow_wildcards *);
207int flow_count_common_mpls_labels(const struct flow *a, int an,
208 const struct flow *b, int bn,
209 struct flow_wildcards *wc);
210void flow_push_mpls(struct flow *, int n, ovs_be16 mpls_eth_type,
211 struct flow_wildcards *);
212bool flow_pop_mpls(struct flow *, int n, ovs_be16 eth_type,
213 struct flow_wildcards *);
214void flow_set_mpls_label(struct flow *, int idx, ovs_be32 label);
215void flow_set_mpls_ttl(struct flow *, int idx, uint8_t ttl);
216void flow_set_mpls_tc(struct flow *, int idx, uint8_t tc);
217void flow_set_mpls_bos(struct flow *, int idx, uint8_t stack);
218void flow_set_mpls_lse(struct flow *, int idx, ovs_be32 lse);
b02475c5 219
8b3b8dd1
BP
220void flow_compose(struct ofpbuf *, const struct flow *);
221
064af421 222static inline int
79049a24 223flow_compare_3way(const struct flow *a, const struct flow *b)
064af421 224{
16c6d0c3 225 return memcmp(a, b, sizeof *a);
064af421
BP
226}
227
228static inline bool
ae412e7d 229flow_equal(const struct flow *a, const struct flow *b)
064af421 230{
79049a24 231 return !flow_compare_3way(a, b);
064af421
BP
232}
233
234static inline size_t
ae412e7d 235flow_hash(const struct flow *flow, uint32_t basis)
064af421 236{
16c6d0c3 237 return hash_words((const uint32_t *) flow, sizeof *flow / 4, basis);
064af421 238}
5cb7a798 239
4e022ec0
AW
240static inline uint16_t
241ofp_to_u16(ofp_port_t ofp_port)
242{
243 return (OVS_FORCE uint16_t) ofp_port;
244}
245
246static inline uint32_t
247odp_to_u32(odp_port_t odp_port)
248{
249 return (OVS_FORCE uint32_t) odp_port;
250}
251
252static inline uint32_t
253ofp11_to_u32(ofp11_port_t ofp11_port)
254{
255 return (OVS_FORCE uint32_t) ofp11_port;
256}
257
258static inline ofp_port_t
259u16_to_ofp(uint16_t port)
260{
261 return OFP_PORT_C(port);
262}
263
264static inline odp_port_t
265u32_to_odp(uint32_t port)
266{
267 return ODP_PORT_C(port);
268}
269
270static inline ofp11_port_t
271u32_to_ofp11(uint32_t port)
272{
273 return OFP11_PORT_C(port);
274}
275
f9c0c3ec
EJ
276static inline uint32_t
277hash_ofp_port(ofp_port_t ofp_port)
278{
279 return hash_int(ofp_to_u16(ofp_port), 0);
280}
281
282static inline uint32_t
283hash_odp_port(odp_port_t odp_port)
284{
285 return hash_int(odp_to_u32(odp_port), 0);
286}
287
5cb7a798
BP
288uint32_t flow_hash_in_minimask(const struct flow *, const struct minimask *,
289 uint32_t basis);
476f36e8
JR
290uint32_t flow_hash_in_minimask_range(const struct flow *,
291 const struct minimask *,
292 uint8_t start, uint8_t end,
293 uint32_t *basis);
659c2346 294\f
26720e24
BP
295/* Wildcards for a flow.
296 *
297 * A 1-bit in each bit in 'masks' indicates that the corresponding bit of
298 * the flow is significant (must match). A 0-bit indicates that the
299 * corresponding bit of the flow is wildcarded (need not match). */
064af421 300struct flow_wildcards {
26720e24 301 struct flow masks;
064af421 302};
a877206f 303
d8ae4d67 304void flow_wildcards_init_catchall(struct flow_wildcards *);
494e43a5 305
c11c6faa
AZ
306void flow_wildcards_clear_non_packet_fields(struct flow_wildcards *);
307
ecf1e7ac 308bool flow_wildcards_is_catchall(const struct flow_wildcards *);
00561f41 309
b6c9e612
BP
310void flow_wildcards_set_reg_mask(struct flow_wildcards *,
311 int idx, uint32_t mask);
064af421 312
368eefac
EJ
313void flow_wildcards_and(struct flow_wildcards *dst,
314 const struct flow_wildcards *src1,
315 const struct flow_wildcards *src2);
316void flow_wildcards_or(struct flow_wildcards *dst,
317 const struct flow_wildcards *src1,
318 const struct flow_wildcards *src2);
b5d97350
BP
319bool flow_wildcards_has_extra(const struct flow_wildcards *,
320 const struct flow_wildcards *);
321
ad77e3c5
EJ
322void flow_wildcards_fold_minimask(struct flow_wildcards *,
323 const struct minimask *);
476f36e8
JR
324void flow_wildcards_fold_minimask_range(struct flow_wildcards *,
325 const struct minimask *,
326 uint8_t start, uint8_t end);
ad77e3c5 327
1006cda6 328uint32_t flow_wildcards_hash(const struct flow_wildcards *, uint32_t basis);
b5d97350
BP
329bool flow_wildcards_equal(const struct flow_wildcards *,
330 const struct flow_wildcards *);
63be20be 331uint32_t flow_hash_5tuple(const struct flow *flow, uint32_t basis);
ff55ea1f 332uint32_t flow_hash_symmetric_l4(const struct flow *flow, uint32_t basis);
b5d97350 333
94639963
JR
334/* Initialize a flow with random fields that matter for nx_hash_fields. */
335void flow_random_hash_fields(struct flow *);
6cdd5145
JP
336void flow_mask_hash_fields(const struct flow *, struct flow_wildcards *,
337 enum nx_hash_fields);
520e9a2a
EJ
338uint32_t flow_hash_fields(const struct flow *, enum nx_hash_fields,
339 uint16_t basis);
340const char *flow_hash_fields_to_str(enum nx_hash_fields);
341bool flow_hash_fields_valid(enum nx_hash_fields);
db7f8281 342
368eefac
EJ
343uint32_t flow_hash_in_wildcards(const struct flow *,
344 const struct flow_wildcards *,
345 uint32_t basis);
346
659c2346
BP
347bool flow_equal_except(const struct flow *a, const struct flow *b,
348 const struct flow_wildcards *);
5cb7a798
BP
349\f
350/* Compressed flow. */
351
352#define MINI_N_INLINE (sizeof(void *) == 4 ? 7 : 8)
080e28d0 353BUILD_ASSERT_DECL(FLOW_U32S <= 64);
5cb7a798
BP
354
355/* A sparse representation of a "struct flow".
356 *
357 * A "struct flow" is fairly large and tends to be mostly zeros. Sparse
358 * representation has two advantages. First, it saves memory. Second, it
359 * saves time when the goal is to iterate over only the nonzero parts of the
360 * struct.
361 *
362 * The 'map' member holds one bit for each uint32_t in a "struct flow". Each
363 * 0-bit indicates that the corresponding uint32_t is zero, each 1-bit that it
df40c152 364 * *may* be nonzero.
5cb7a798
BP
365 *
366 * 'values' points to the start of an array that has one element for each 1-bit
367 * in 'map'. The least-numbered 1-bit is in values[0], the next 1-bit is in
368 * values[1], and so on.
369 *
370 * 'values' may point to a few different locations:
371 *
372 * - If 'map' has MINI_N_INLINE or fewer 1-bits, it may point to
373 * 'inline_values'. One hopes that this is the common case.
374 *
375 * - If 'map' has more than MINI_N_INLINE 1-bits, it may point to memory
376 * allocated with malloc().
377 *
378 * - The caller could provide storage on the stack for situations where
379 * that makes sense. So far that's only proved useful for
380 * minimask_combine(), but the principle works elsewhere.
381 *
df40c152
BP
382 * Elements in 'values' are allowed to be zero. This is useful for "struct
383 * minimatch", for which ensuring that the miniflow and minimask members have
83916319
JR
384 * same 'map' allows optimization. This allowance applies only to a miniflow
385 * that is not a mask. That is, a minimask may NOT have zero elements in
386 * its 'values'.
5cb7a798
BP
387 */
388struct miniflow {
080e28d0 389 uint64_t map;
5cb7a798
BP
390 uint32_t *values;
391 uint32_t inline_values[MINI_N_INLINE];
5cb7a798
BP
392};
393
394void miniflow_init(struct miniflow *, const struct flow *);
df40c152
BP
395void miniflow_init_with_minimask(struct miniflow *, const struct flow *,
396 const struct minimask *);
5cb7a798 397void miniflow_clone(struct miniflow *, const struct miniflow *);
b2c1f00b 398void miniflow_move(struct miniflow *dst, struct miniflow *);
5cb7a798
BP
399void miniflow_destroy(struct miniflow *);
400
401void miniflow_expand(const struct miniflow *, struct flow *);
402
403uint32_t miniflow_get(const struct miniflow *, unsigned int u32_ofs);
404uint16_t miniflow_get_vid(const struct miniflow *);
c906cedf 405static inline ovs_be64 miniflow_get_metadata(const struct miniflow *);
5cb7a798
BP
406
407bool miniflow_equal(const struct miniflow *a, const struct miniflow *b);
408bool miniflow_equal_in_minimask(const struct miniflow *a,
409 const struct miniflow *b,
410 const struct minimask *);
411bool miniflow_equal_flow_in_minimask(const struct miniflow *a,
412 const struct flow *b,
413 const struct minimask *);
414uint32_t miniflow_hash(const struct miniflow *, uint32_t basis);
415uint32_t miniflow_hash_in_minimask(const struct miniflow *,
416 const struct minimask *, uint32_t basis);
83916319
JR
417uint64_t miniflow_get_map_in_range(const struct miniflow *miniflow,
418 uint8_t start, uint8_t end,
419 unsigned int *offset);
420
5cb7a798
BP
421\f
422/* Compressed flow wildcards. */
423
424/* A sparse representation of a "struct flow_wildcards".
425 *
83916319
JR
426 * See the large comment on struct miniflow for details.
427 *
428 * Note: While miniflow can have zero data for a 1-bit in the map,
429 * a minimask may not! We rely on this in the implementation. */
5cb7a798
BP
430struct minimask {
431 struct miniflow masks;
432};
433
434void minimask_init(struct minimask *, const struct flow_wildcards *);
435void minimask_clone(struct minimask *, const struct minimask *);
b2c1f00b 436void minimask_move(struct minimask *dst, struct minimask *src);
5cb7a798
BP
437void minimask_combine(struct minimask *dst,
438 const struct minimask *a, const struct minimask *b,
439 uint32_t storage[FLOW_U32S]);
440void minimask_destroy(struct minimask *);
441
442void minimask_expand(const struct minimask *, struct flow_wildcards *);
443
444uint32_t minimask_get(const struct minimask *, unsigned int u32_ofs);
445uint16_t minimask_get_vid_mask(const struct minimask *);
c906cedf 446static inline ovs_be64 minimask_get_metadata_mask(const struct minimask *);
5cb7a798
BP
447
448bool minimask_equal(const struct minimask *a, const struct minimask *b);
449uint32_t minimask_hash(const struct minimask *, uint32_t basis);
450
451bool minimask_has_extra(const struct minimask *, const struct minimask *);
452bool minimask_is_catchall(const struct minimask *);
c906cedf
BP
453\f
454/* Returns the value of the OpenFlow 1.1+ "metadata" field in 'flow'. */
455static inline ovs_be64
456miniflow_get_metadata(const struct miniflow *flow)
457{
458 enum { MD_OFS = offsetof(struct flow, metadata) };
459 BUILD_ASSERT_DECL(MD_OFS % sizeof(uint32_t) == 0);
460 ovs_be32 hi = (OVS_FORCE ovs_be32) miniflow_get(flow, MD_OFS / 4);
461 ovs_be32 lo = (OVS_FORCE ovs_be32) miniflow_get(flow, MD_OFS / 4 + 1);
462
463 return htonll(((uint64_t) ntohl(hi) << 32) | ntohl(lo));
464}
465
466/* Returns the mask for the OpenFlow 1.1+ "metadata" field in 'mask'.
467 *
468 * The return value is all-1-bits if 'mask' matches on the whole value of the
469 * metadata field, all-0-bits if 'mask' entirely wildcards the metadata field,
470 * or some other value if the metadata field is partially matched, partially
471 * wildcarded. */
472static inline ovs_be64
473minimask_get_metadata_mask(const struct minimask *mask)
474{
475 return miniflow_get_metadata(&mask->masks);
476}
659c2346 477
064af421 478#endif /* flow.h */