From: Eloy Pérez González Date: Thu, 4 Nov 2021 14:20:14 +0000 (+0100) Subject: dcerpc: remove prev_tx_call_id and clear_bind_cache from DCERPCState X-Git-Tag: suricata-6.0.5~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1556ea0ceb2b9c6deadd13046298650d42960819;p=thirdparty%2Fsuricata.git dcerpc: remove prev_tx_call_id and clear_bind_cache from DCERPCState remove those fields since are not used because of the removal of handle_bind_cache. (cherry picked from commit 15f493f516a452ca810f77595fb57f8e2e96d6e3) --- diff --git a/rust/src/dcerpc/dcerpc.rs b/rust/src/dcerpc/dcerpc.rs index a69e17ec27..9f01178cbf 100644 --- a/rust/src/dcerpc/dcerpc.rs +++ b/rust/src/dcerpc/dcerpc.rs @@ -342,8 +342,6 @@ pub struct DCERPCState { pub query_completed: bool, pub data_needed_for_dir: u8, pub prev_dir: u8, - pub prev_tx_call_id: u32, - pub clear_bind_cache: bool, pub ts_gap: bool, pub tc_gap: bool, pub ts_ssn_gap: bool, @@ -369,8 +367,6 @@ impl DCERPCState { query_completed: false, data_needed_for_dir: core::STREAM_TOSERVER, prev_dir: core::STREAM_TOSERVER, - prev_tx_call_id: 0, - clear_bind_cache: false, ts_gap: false, tc_gap: false, ts_ssn_gap: false,