From d1ea00521b02a3bd123a145827c9804817357f3d Mon Sep 17 00:00:00 2001 From: Shivani Bhardwaj Date: Mon, 21 Jun 2021 16:36:42 +0530 Subject: [PATCH] rust/core: Add flow flags --- rust/src/core.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rust/src/core.rs b/rust/src/core.rs index 2e773e2cfc..1745ca57c7 100644 --- a/rust/src/core.rs +++ b/rust/src/core.rs @@ -64,6 +64,9 @@ macro_rules!BIT_U64 { ($x:expr) => (1 << $x); } +// Flow flags +pub const FLOW_DIR_REVERSED: u32 = BIT_U32!(26); + // Defined in app-layer-protos.h extern { pub fn StringToAppProto(proto_name: *const u8) -> AppProto;