Skip to content
Snippets Groups Projects
Commit dabf7d23 authored by József Gyürüsi's avatar József Gyürüsi
Browse files

[TSD-31660] TitanSim crashes with aes-gmac and aes-gcm

  f_EPTF_CLL_Transport_IPsecHandler_Logging_Client_LogSAAddInfo fixed

Change-Id: I2805d9dadd4e350686015ad18309d5499ea37066
parent 8e5dfc7c
No related branches found
No related tags found
1 merge request!23[TSD-31660] TitanSim crashes with aes-gmac and aes-gcm
...@@ -117,8 +117,14 @@ friend function f_EPTF_CLL_Transport_IPsecHandler_Logging_Client_LogSAAddInfo(in ...@@ -117,8 +117,14 @@ friend function f_EPTF_CLL_Transport_IPsecHandler_Logging_Client_LogSAAddInfo(in
var charstring vl_dstAddr := pl_sa_info.dst.ip_address; var charstring vl_dstAddr := pl_sa_info.dst.ip_address;
var integer pl_spi := pl_sa_info.spi; var integer pl_spi := pl_sa_info.spi;
var Authentication vl_authInfo := pl_sa_info.ipsec_algos.auth; var Authentication vl_authInfo := { name := NULL_AUTH, key := { text := "" } };
var Encryption vl_encInfo := pl_sa_info.ipsec_algos.enc; if (ispresent(pl_sa_info.ipsec_algos.auth)) {
vl_authInfo := pl_sa_info.ipsec_algos.auth;
}
var Encryption vl_encInfo := { name := NULL_ENCR, key := { text :="" } };
if (ispresent(pl_sa_info.ipsec_algos.enc)) {
vl_encInfo := pl_sa_info.ipsec_algos.enc;
}
var octetstring vl_CK; var octetstring vl_CK;
var octetstring vl_IK; var octetstring vl_IK;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment