Make snat_skb() skb argument const.
[sliver-openvswitch.git] / datapath / table.h
index c40b4ca..80865e6 100644 (file)
@@ -8,7 +8,7 @@
 
 struct sw_flow;
 struct sw_flow_key;
-struct ofp_action;
+struct ofp_action_header;
 struct datapath;
 
 /* Table statistics. */
@@ -62,7 +62,7 @@ struct sw_table {
         * that were modified. */
        int (*modify)(struct sw_table *table, const struct sw_flow_key *key,
                        uint16_t priority, int strict,
-                       const struct ofp_action *actions, int n_actions);
+                       const struct ofp_action_header *actions, size_t actions_len);
 
        /* Deletes from 'table' any and all flows that match 'key' from
         * 'table'.  If 'strict' set, wildcards and priority must match.