aboutsummaryrefslogtreecommitdiff
path: root/nftnl/src/expr/mod.rs
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2020-05-18 14:44:30 +0200
committerDavid Lönnhager <david.l@mullvad.net>2020-05-19 11:00:23 +0200
commit0fcc1f74a7a203b075ea9a0e84818902bab54c53 (patch)
tree9d1bd45dc77bdfca803d1ba0921f1e9e9a591e37 /nftnl/src/expr/mod.rs
parente50e459d506f0f6e9e58e6d0298f1754e90aef98 (diff)
Move Verdict to its own module since it does not depend only on 'immediate' expressions
Diffstat (limited to 'nftnl/src/expr/mod.rs')
-rw-r--r--nftnl/src/expr/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/nftnl/src/expr/mod.rs b/nftnl/src/expr/mod.rs
index 84d7035..3b49951 100644
--- a/nftnl/src/expr/mod.rs
+++ b/nftnl/src/expr/mod.rs
@@ -39,6 +39,9 @@ pub use self::meta::*;
mod payload;
pub use self::payload::*;
+mod verdict;
+pub use self::verdict::*;
+
#[macro_export(local_inner_macros)]
macro_rules! nft_expr {
(bitwise mask $mask:expr,xor $xor:expr) => {