X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fofproto-dpif-xlate.h;h=40712f99c1fe638e145049f5c51ac680391d15ea;hb=2431be1b68d386bd616378d2c528242775c4d54a;hp=1c37bc33540b3ae649e5fae9b66d1166c916b91b;hpb=dc24a00f80e2e54e47d98fcffc679ce597b27ebb;p=sliver-openvswitch.git diff --git a/ofproto/ofproto-dpif-xlate.h b/ofproto/ofproto-dpif-xlate.h index 1c37bc335..40712f99c 100644 --- a/ofproto/ofproto-dpif-xlate.h +++ b/ofproto/ofproto-dpif-xlate.h @@ -12,8 +12,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef OFPROT_DPIF_XLATE_H -#define OFPROT_DPIF_XLATE_H 1 +#ifndef OFPROTO_DPIF_XLATE_H +#define OFPROTO_DPIF_XLATE_H 1 #include "flow.h" #include "meta-flow.h" @@ -21,6 +21,8 @@ #include "ofpbuf.h" #include "ofproto-dpif-mirror.h" #include "ofproto-dpif.h" +#include "ofproto.h" +#include "stp.h" struct bfd; struct bond; @@ -41,6 +43,7 @@ struct xlate_out { struct flow_wildcards wc; enum slow_path_reason slow; /* 0 if fast path may be used. */ + bool fail_open; /* Initial rule is fail open? */ bool has_learn; /* Actions include NXAST_LEARN? */ bool has_normal; /* Actions output to OFPP_NORMAL? */ bool has_fin_timeout; /* Actions include NXAST_FIN_TIMEOUT? */ @@ -70,7 +73,8 @@ struct xlate_in { * not if we are just revalidating. */ bool may_learn; - /* The rule initiating translation or NULL. */ + /* The rule initiating translation or NULL. If both 'rule' and 'ofpacts' + * are NULL, xlate_actions() will do the initial rule lookup itself. */ struct rule_dpif *rule; /* The actions to translate. If 'rule' is not NULL, these may be NULL. */ @@ -152,4 +156,12 @@ void xlate_in_init(struct xlate_in *, struct ofproto_dpif *, void xlate_out_uninit(struct xlate_out *); void xlate_actions_for_side_effects(struct xlate_in *); void xlate_out_copy(struct xlate_out *dst, const struct xlate_out *src); + +struct dpif_sflow *xlate_get_sflow(const struct ofproto_dpif *) + OVS_EXCLUDED(xlate_rwlock); +struct dpif_ipfix *xlate_get_ipfix(const struct ofproto_dpif *) + OVS_EXCLUDED(xlate_rwlock); + +int xlate_send_packet(const struct ofport_dpif *, struct ofpbuf *); + #endif /* ofproto-dpif-xlate.h */