From: Eric Leblond Date: Mon, 23 Jan 2023 19:03:35 +0000 (+0100) Subject: ike: add TX orientation X-Git-Tag: suricata-6.0.11~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cb79d0721a1df6e541eb7279b5d4cd3f4379ac6;p=thirdparty%2Fsuricata.git ike: add TX orientation Set no inspection in the opposite side of the transaction. Ticket: #5799 --- diff --git a/rust/src/ikev2/ikev2.rs b/rust/src/ikev2/ikev2.rs index d032c997b8..c896c090c0 100644 --- a/rust/src/ikev2/ikev2.rs +++ b/rust/src/ikev2/ikev2.rs @@ -153,6 +153,7 @@ impl IKEV2State { } let mut tx = self.new_tx(); // use init_spi as transaction identifier + tx.tx_data.set_inspect_direction(direction); tx.xid = hdr.init_spi; tx.hdr = (*hdr).clone(); self.transactions.push(tx);