#ifndef DP_ACT_H #define DP_ACT_H 1 #include "datapath.h" #define ACT_VALIDATION_OK ((uint16_t)-1) uint16_t validate_actions(struct datapath *, const struct sw_flow_key *, const struct ofp_action_header *, size_t); void execute_actions(struct datapath *, struct sk_buff *, struct sw_flow_key *, const struct ofp_action_header *, size_t action_len, int ignore_no_fwd); int make_writable(struct sk_buff **pskb); #endif /* dp_act.h */