Skip to content

Commit

Permalink
dpif-netdev: Indicate support for various ct features.
Browse files Browse the repository at this point in the history
The userspace datapath uses a structure to indicate supported features
that affects debug output.  This commit updates that structure to
indicate that "ct_state_nat", "ct_orig_tuple", and "ct_orig_tuple6" are
supported.

Signed-off-by: Justin Pettit <[email protected]>
Acked-by: Darrell Ball <[email protected]>
  • Loading branch information
justinpettit committed Jul 20, 2017
1 parent 7c12dfc commit 2575df0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/dpif-netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ static struct odp_support dp_netdev_support = {
.ct_zone = true,
.ct_mark = true,
.ct_label = true,
.ct_state_nat = true,
.ct_orig_tuple = true,
.ct_orig_tuple6 = true,
};

/* Stores a miniflow with inline values */
Expand Down

0 comments on commit 2575df0

Please sign in to comment.