From f3a1e3b92e1946f2bd98d60e8d195af4c4414f94 Mon Sep 17 00:00:00 2001 From: Shivani Bhardwaj Date: Thu, 12 Aug 2021 22:13:31 +0530 Subject: [PATCH] core: Remove unneeded consts --- rust/src/core.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/rust/src/core.rs b/rust/src/core.rs index 081c87b9c5..c47f936cbf 100644 --- a/rust/src/core.rs +++ b/rust/src/core.rs @@ -34,8 +34,6 @@ pub const APP_LAYER_EVENT_TYPE_PACKET : i32 = 2; // From stream.h. pub const STREAM_START: u8 = 0x01; pub const STREAM_EOF: u8 = 0x02; -pub const STREAM_TOSERVER: u8 = 0x04; -pub const STREAM_TOCLIENT: u8 = 0x08; pub const STREAM_GAP: u8 = 0x10; pub const STREAM_DEPTH: u8 = 0x20; pub const STREAM_MIDSTREAM:u8 = 0x40;