2012-07-03 22:17:14 -07:00
|
|
|
/* Copyright (c) 2011, 2012 Nicira, Inc.
|
2011-06-10 17:45:45 -07:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BUNDLE_H
|
|
|
|
#define BUNDLE_H 1
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2012-01-12 15:48:19 -08:00
|
|
|
#include "ofp-errors.h"
|
2011-06-10 17:45:45 -07:00
|
|
|
#include "openflow/nicira-ext.h"
|
|
|
|
#include "openvswitch/types.h"
|
|
|
|
|
|
|
|
struct ds;
|
|
|
|
struct flow;
|
2013-05-14 18:24:43 -07:00
|
|
|
struct flow_wildcards;
|
2012-07-03 22:17:14 -07:00
|
|
|
struct ofpact_bundle;
|
2011-06-10 17:45:45 -07:00
|
|
|
struct ofpbuf;
|
|
|
|
|
|
|
|
/* NXAST_BUNDLE helper functions.
|
|
|
|
*
|
|
|
|
* See include/openflow/nicira-ext.h for NXAST_BUNDLE specification. */
|
|
|
|
|
2013-06-19 16:58:44 -07:00
|
|
|
ofp_port_t bundle_execute(const struct ofpact_bundle *, const struct flow *,
|
2013-05-14 18:24:43 -07:00
|
|
|
struct flow_wildcards *wc,
|
2013-06-19 16:58:44 -07:00
|
|
|
bool (*slave_enabled)(ofp_port_t ofp_port, void *aux),
|
2011-06-10 17:45:45 -07:00
|
|
|
void *aux);
|
2012-07-03 22:17:14 -07:00
|
|
|
enum ofperr bundle_from_openflow(const struct nx_action_bundle *,
|
|
|
|
struct ofpbuf *ofpact);
|
2013-06-19 16:58:44 -07:00
|
|
|
enum ofperr bundle_check(const struct ofpact_bundle *, ofp_port_t max_ports,
|
2012-01-12 15:48:19 -08:00
|
|
|
const struct flow *);
|
2012-07-03 22:17:14 -07:00
|
|
|
void bundle_to_nxast(const struct ofpact_bundle *, struct ofpbuf *of10);
|
|
|
|
void bundle_parse(const char *, struct ofpbuf *ofpacts);
|
|
|
|
void bundle_parse_load(const char *, struct ofpbuf *ofpacts);
|
|
|
|
void bundle_format(const struct ofpact_bundle *, struct ds *);
|
2011-06-10 17:45:45 -07:00
|
|
|
|
|
|
|
#endif /* bundle.h */
|