]> git.proxmox.com Git - mirror_ovs.git/blame - lib/bundle.h
netdev: Reject empty names in netdev_open().
[mirror_ovs.git] / lib / bundle.h
CommitLineData
c2d936a4 1/* Copyright (c) 2011, 2012, 2013, 2014 Nicira, Inc.
daff3353
EJ
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef BUNDLE_H
17#define BUNDLE_H 1
18
19#include <arpa/inet.h>
20#include <stdbool.h>
21#include <stddef.h>
22#include <stdint.h>
23
bdda5aca 24#include "compiler.h"
daff3353 25#include "openflow/nicira-ext.h"
e03c096d 26#include "openvswitch/ofp-errors.h"
daff3353
EJ
27#include "openvswitch/types.h"
28
29struct ds;
30struct flow;
bcd2633a 31struct flow_wildcards;
f25d0cf3 32struct ofpact_bundle;
daff3353
EJ
33struct ofpbuf;
34
35/* NXAST_BUNDLE helper functions.
36 *
0da61033 37 * See lib/ofp-actions.c for NXAST_BUNDLE specification. */
daff3353 38
c2d936a4
BP
39#define BUNDLE_MAX_SLAVES 2048
40
4e022ec0 41ofp_port_t bundle_execute(const struct ofpact_bundle *, const struct flow *,
bcd2633a 42 struct flow_wildcards *wc,
4e022ec0 43 bool (*slave_enabled)(ofp_port_t ofp_port, void *aux),
daff3353 44 void *aux);
4e022ec0 45enum ofperr bundle_check(const struct ofpact_bundle *, ofp_port_t max_ports,
90bf1e07 46 const struct flow *);
cab50449 47char *bundle_parse(const char *, struct ofpbuf *ofpacts) OVS_WARN_UNUSED_RESULT;
bdda5aca 48char *bundle_parse_load(const char *, struct ofpbuf *ofpacts)
cab50449 49 OVS_WARN_UNUSED_RESULT;
f25d0cf3 50void bundle_format(const struct ofpact_bundle *, struct ds *);
daff3353
EJ
51
52#endif /* bundle.h */