diff options
author | Simon THOBY <git@nightmared.fr> | 2022-12-09 23:30:10 +0100 |
---|---|---|
committer | Simon THOBY <git@nightmared.fr> | 2022-12-09 23:30:10 +0100 |
commit | 5fbf51008eb7e2d55e074cd12c877b59f4a41f79 (patch) | |
tree | c3ff246604ffdf6f3d5b7113e44727ddf81b362c /src/expr/mod.rs | |
parent | 7667c77d1de9c6d2167d93024f0a682ef29c6403 (diff) |
re-impl the ct expression
Diffstat (limited to 'src/expr/mod.rs')
-rw-r--r-- | src/expr/mod.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/expr/mod.rs b/src/expr/mod.rs index 0a7f54c..a6da2cd 100644 --- a/src/expr/mod.rs +++ b/src/expr/mod.rs @@ -27,11 +27,9 @@ pub use self::cmp::*; mod counter; pub use self::counter::*; -/* pub mod ct; pub use self::ct::*; -*/ mod immediate; pub use self::immediate::*; @@ -224,7 +222,8 @@ create_expr_variant!( [Counter, Counter], [Nat, Nat], [Payload, Payload], - [Cmp, Cmp] + [Cmp, Cmp], + [Conntrack, Conntrack] ); #[derive(Debug, Clone, PartialEq, Eq, Default)] |