Add support for vendor-defined and variable-length actions.
[sliver-openvswitch.git] / datapath / nx_act.h
1 #ifndef NX_ACT_H
2 #define NX_ACT_H 1
3
4 #include "datapath.h"
5
6
7 uint16_t nx_validate_act(struct datapath *dp, const struct sw_flow_key *key,
8                 const struct ofp_action_vendor_header *avh, uint16_t len);
9
10 struct sk_buff *nx_execute_act(struct sk_buff *skb, 
11                 const struct sw_flow_key *key,
12                 const struct ofp_action_vendor_header *avh);
13
14 #endif /* nx_act.h */