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/parser.rs | |
parent | 7667c77d1de9c6d2167d93024f0a682ef29c6403 (diff) |
re-impl the ct expression
Diffstat (limited to 'src/parser.rs')
-rw-r--r-- | src/parser.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/parser.rs b/src/parser.rs index b5e9f18..c402dae 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -85,6 +85,9 @@ pub enum DecodeError { #[error("Invalid type for a compare expression")] UnknownCmpOp(u32), + #[error("Invalid type for a conntrack key")] + UnknownConntrackKey(u32), + #[error("Unsupported value for a link layer header field")] UnknownLinkLayerHeaderField(u32, u32), |