From 16eb56aa7374e2d73840554f28fff883a05ce825 Mon Sep 17 00:00:00 2001 From: Shivani Bhardwaj Date: Tue, 27 May 2025 13:02:03 +0530 Subject: [PATCH] sip: fix inspection direction --- rust/src/sip/sip.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/src/sip/sip.rs b/rust/src/sip/sip.rs index 9241b432e2..7c7c68bd66 100755 --- a/rust/src/sip/sip.rs +++ b/rust/src/sip/sip.rs @@ -281,7 +281,7 @@ impl SIPState { tx.response_line = resp_line; } self.transactions.push_back(tx); - sc_app_layer_parser_trigger_raw_stream_inspection(flow, Direction::ToServer as i32); + sc_app_layer_parser_trigger_raw_stream_inspection(flow, Direction::ToClient as i32); let consumed = start.len() - rem.len(); start = rem;