aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSimon THOBY <git@nightmared.fr>2022-11-12 16:37:38 +0100
committerSimon THOBY <git@nightmared.fr>2022-11-12 16:37:38 +0100
commitf8effdd348e38f51f6ec7b24c4c27e6602538445 (patch)
tree49334f265a27ea39f115d498780ecba3581728d3 /src/lib.rs
parentcc717f0aed28138ee1a422c790dd129bfc1bfdc1 (diff)
tests: fix the NetlinkExpr ordering
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index db23b28..4070bb1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -97,13 +97,13 @@ pub use batch::{default_batch_page_size, Batch};
//pub mod expr;
-pub mod table;
+mod table;
pub use table::list_tables;
pub use table::Table;
-pub mod chain;
+mod chain;
pub use chain::list_chains_for_table;
-pub use chain::{Chain, ChainPolicy, ChainPriority, ChainType, Hook};
+pub use chain::{Chain, ChainPolicy, ChainPriority, ChainType, Hook, HookClass};
//mod chain_methods;
//pub use chain_methods::ChainMethods;