Commit b708cb36 authored by Cedric Roux's avatar Cedric Roux

- Fix 15 digits length IMSI

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4669 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent e23e28eb
......@@ -2,19 +2,19 @@
#define S6A_MESSAGES_TYPES_H_
typedef struct {
#define SKIP_SUBSRIBER_DATA (0x1)
#define SKIP_SUBSCRIBER_DATA (0x1)
unsigned skip_subsriber_data:1;
#define INITIAL_ATTACH (0x1)
unsigned initial_attach:1;
char imsi[IMSI_DIGITS_MAX];
char imsi[IMSI_DIGITS_MAX + 1];
uint8_t imsi_length;
plmn_t visited_plmn;
rat_type_t rat_type;
} s6a_update_location_req_t;
typedef struct {
char imsi[IMSI_DIGITS_MAX];
char imsi[IMSI_DIGITS_MAX + 1];
uint8_t imsi_length;
/* Result of the update location request procedure */
......@@ -23,7 +23,7 @@ typedef struct {
} s6a_update_location_ans_t;
typedef struct {
char imsi[IMSI_DIGITS_MAX];
char imsi[IMSI_DIGITS_MAX + 1];
uint8_t imsi_length;
plmn_t visited_plmn;
/* Number of vectors to retrieve from HSS, should be equal to one */
......@@ -31,7 +31,7 @@ typedef struct {
} s6a_auth_info_req_t;
typedef struct {
char imsi[IMSI_DIGITS_MAX];
char imsi[IMSI_DIGITS_MAX + 1];
uint8_t imsi_length;
/* Result of the authentication information procedure */
......
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