Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
promise
OpenXG-RAN
Commits
24fb627b
Commit
24fb627b
authored
Apr 24, 2014
by
Lionel Gauthier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git-svn-id:
http://svn.eurecom.fr/openair4G/trunk@5292
818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent
996752e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
openair-cn/MME_APP/mme_app_authentication.c
openair-cn/MME_APP/mme_app_authentication.c
+9
-5
No files found.
openair-cn/MME_APP/mme_app_authentication.c
View file @
24fb627b
...
...
@@ -160,8 +160,10 @@ mme_app_handle_authentication_info_answer(
DevAssert
(
ue_context
->
vector_list
!=
NULL
);
}
else
{
/* Some vector already exist */
ue_context
->
vector_list
=
realloc
(
ue_context
->
vector_list
,
(
ue_context
->
nb_of_vectors
+
1
)
*
sizeof
(
eutran_vector_t
));
ue_context
->
vector_list
=
realloc
(
ue_context
->
vector_list
,
(
ue_context
->
nb_of_vectors
+
s6a_auth_info_ans_pP
->
auth_info
.
nb_of_vectors
)
*
sizeof
(
eutran_vector_t
));
DevAssert
(
ue_context
->
vector_list
!=
NULL
);
}
memcpy
(
&
ue_context
->
vector_list
[
ue_context
->
nb_of_vectors
],
...
...
@@ -171,10 +173,12 @@ mme_app_handle_authentication_info_answer(
ue_context
->
nb_of_vectors
+=
s6a_auth_info_ans_pP
->
auth_info
.
nb_of_vectors
;
MME_APP_ERROR
(
"INFORMING NAS ABOUT AUTH RESP SUCCESS
\n
"
);
MME_APP_DEBUG
(
"INFORMING NAS ABOUT AUTH RESP SUCCESS got %u vector(s)
\n
"
,
s6a_auth_info_ans_pP
->
auth_info
.
nb_of_vectors
);
mme_app_itti_auth_rsp
(
ue_context
->
ue_id
,
1
,
&
s6a_auth_info_ans_pP
->
auth_info
.
eutran_vector
);
mme_app_itti_auth_rsp
(
ue_context
->
ue_id
,
1
,
&
s6a_auth_info_ans_pP
->
auth_info
.
eutran_vector
);
}
else
{
MME_APP_ERROR
(
"INFORMING NAS ABOUT AUTH RESP ERROR CODE
\n
"
);
/* Inform NAS layer with the right failure */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment