X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fofproto-dpif-xlate.h;h=40712f99c1fe638e145049f5c51ac680391d15ea;hb=39d007ab3dbad6dbc92c71bc7797a728d3995afb;hp=a54a9e4a22539e36a6af617ccdf7de188861a07b;hpb=70742c7f54e7f1477da81219b064f786656b4aba;p=sliver-openvswitch.git diff --git a/ofproto/ofproto-dpif-xlate.h b/ofproto/ofproto-dpif-xlate.h index a54a9e4a2..40712f99c 100644 --- a/ofproto/ofproto-dpif-xlate.h +++ b/ofproto/ofproto-dpif-xlate.h @@ -43,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? */ @@ -72,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. */ @@ -154,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 */