Commit 9e1181cf authored by Lionel Gauthier's avatar Lionel Gauthier

security algorithms

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5665 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 0585741f
...@@ -346,6 +346,8 @@ typedef struct nas_establish_rsp_s { ...@@ -346,6 +346,8 @@ typedef struct nas_establish_rsp_s {
nas_error_code_t errCode; /* Transaction status */ nas_error_code_t errCode; /* Transaction status */
as_nas_info_t nasMsg; /* NAS message to transfer */ as_nas_info_t nasMsg; /* NAS message to transfer */
UInt32_t nas_ul_count; /* UL NAS COUNT */ UInt32_t nas_ul_count; /* UL NAS COUNT */
uint16_t selected_encryption_algorithm;
uint16_t selected_integrity_algorithm;
} nas_establish_rsp_t; } nas_establish_rsp_t;
/* /*
...@@ -357,6 +359,8 @@ typedef struct nas_establish_cnf_s { ...@@ -357,6 +359,8 @@ typedef struct nas_establish_cnf_s {
nas_error_code_t errCode; /* Transaction status */ nas_error_code_t errCode; /* Transaction status */
as_nas_info_t nasMsg; /* NAS message to transfer */ as_nas_info_t nasMsg; /* NAS message to transfer */
UInt32_t ul_nas_count; UInt32_t ul_nas_count;
uint16_t selected_encryption_algorithm;
uint16_t selected_integrity_algorithm;
} nas_establish_cnf_t; } nas_establish_cnf_t;
/* /*
......
...@@ -148,9 +148,9 @@ Description Contains network's global definitions ...@@ -148,9 +148,9 @@ Description Contains network's global definitions
* PDN connection type * PDN connection type
* ------------------- * -------------------
*/ */
#define NET_PDN_TYPE_IPV4 0 #define NET_PDN_TYPE_IPV4 (0 + 1)
#define NET_PDN_TYPE_IPV6 1 #define NET_PDN_TYPE_IPV6 (1 + 1)
#define NET_PDN_TYPE_IPV4V6 2 #define NET_PDN_TYPE_IPV4V6 (2 + 1)
/****************************************************************************/ /****************************************************************************/
/************************ G L O B A L T Y P E S ************************/ /************************ G L O B A L T Y P E S ************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment