File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,9 +63,6 @@ pub struct Ikev2Container {
6363 /// The connection state
6464 pub connection_state : IKEV2ConnectionState ,
6565
66- /// The transforms proposed by the initiator
67- pub client_transforms : Vec < Vec < IkeV2Transform > > ,
68-
6966 /// The encryption algorithm selected by the responder
7067 pub alg_enc : IkeTransformEncType ,
7168 /// The authentication algorithm selected by the responder
@@ -85,7 +82,6 @@ impl Default for Ikev2Container {
8582 Ikev2Container {
8683 connection_state : IKEV2ConnectionState :: Init ,
8784 dh_group : IkeTransformDHType :: None ,
88- client_transforms : Vec :: new ( ) ,
8985 alg_enc : IkeTransformEncType :: ENCR_NULL ,
9086 alg_auth : IkeTransformAuthType :: NONE ,
9187 alg_prf : IkeTransformPRFType :: PRF_NULL ,
@@ -301,9 +297,6 @@ fn add_proposals(
301297 _ => { }
302298 } ) ;
303299 SCLogDebug ! ( "Selected transforms: {:?}" , transforms) ;
304- } else {
305- SCLogDebug ! ( "Proposed transforms: {:?}" , transforms) ;
306- state. ikev2_container . client_transforms . push ( transforms) ;
307300 }
308301 }
309302}
You can’t perform that action at this time.
0 commit comments