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
littleBu
OpenXG-RAN
Commits
8a844efa
Commit
8a844efa
authored
Dec 11, 2024
by
Guido Casati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo and rename NAS identity response
parent
2d755988
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
openair3/NAS/NR_UE/5GS/5GMM/MSG/FGSIdentityResponse.c
openair3/NAS/NR_UE/5GS/5GMM/MSG/FGSIdentityResponse.c
+1
-1
openair3/NAS/NR_UE/5GS/5GMM/MSG/FGSIdentityResponse.h
openair3/NAS/NR_UE/5GS/5GMM/MSG/FGSIdentityResponse.h
+3
-4
openair3/NAS/NR_UE/5GS/NR_NAS_defs.h
openair3/NAS/NR_UE/5GS/NR_NAS_defs.h
+1
-1
openair3/NAS/NR_UE/5GS/fgs_nas_lib.c
openair3/NAS/NR_UE/5GS/fgs_nas_lib.c
+1
-1
No files found.
openair3/NAS/NR_UE/5GS/5GMM/MSG/FGSIdentityResponse.c
View file @
8a844efa
...
...
@@ -31,7 +31,7 @@
#include "FGSIdentityResponse.h"
#include <stdint.h>
int
encode_
identiy_response
(
fgs_identiy_response_msg
*
fgs_identity_reps
,
uint8_t
*
buffer
,
uint32_t
len
)
int
encode_
fgmm_identity_response
(
uint8_t
*
buffer
,
const
fgmm_identity_response_msg
*
fgs_identity_reps
,
uint32_t
len
)
{
int
encoded
=
0
;
int
encode_result
=
0
;
...
...
openair3/NAS/NR_UE/5GS/5GMM/MSG/FGSIdentityResponse.h
View file @
8a844efa
...
...
@@ -43,16 +43,15 @@
* Direction: UE to AMF
*/
typedef
struct
fg
s_identiy_response_msg_tag
{
typedef
struct
fg
mm_identity_response_msg_s
{
/* Mandatory fields */
uint8_t
protocoldiscriminator
;
SecurityHeaderType
securityheadertype
:
4
;
uint8_t
sparehalfoctet
:
4
;
MessageType
messagetype
;
FGSMobileIdentity
fgsmobileidentity
;
}
fgmm_identity_response_msg
;
}
fgs_identiy_response_msg
;
int
encode_identiy_response
(
fgs_identiy_response_msg
*
fgs_identity_reps
,
uint8_t
*
buffer
,
uint32_t
len
);
int
encode_fgmm_identity_response
(
uint8_t
*
buffer
,
const
fgmm_identity_response_msg
*
fgs_identity_reps
,
uint32_t
len
);
#endif
/* ! defined(FGS_IDENTITY_RESPONSE_H_) */
openair3/NAS/NR_UE/5GS/NR_NAS_defs.h
View file @
8a844efa
...
...
@@ -264,7 +264,7 @@ typedef union {
fgmm_msg_header_t
header
;
registration_request_msg
registration_request
;
fgs_service_request_msg_t
service_request
;
fg
s_identi
y_response_msg
fgs_identity_response
;
fg
mm_identit
y_response_msg
fgs_identity_response
;
fgs_authentication_response_msg
fgs_auth_response
;
fgs_deregistration_request_ue_originating_msg
fgs_deregistration_request_ue_originating
;
fgs_security_mode_complete_msg
fgs_security_mode_complete
;
...
...
openair3/NAS/NR_UE/5GS/fgs_nas_lib.c
View file @
8a844efa
...
...
@@ -74,7 +74,7 @@ int mm_msg_encode(const MM_msg *mm_msg, uint8_t *buffer, uint32_t len)
encode_result
=
encode_registration_request
(
&
mm_msg
->
registration_request
,
buffer
,
len
);
break
;
case
FGS_IDENTITY_RESPONSE
:
encode_result
=
encode_
identiy_response
(
&
mm_msg
->
fgs_identity_response
,
buffer
,
len
);
encode_result
=
encode_
fgmm_identity_response
(
buffer
,
&
mm_msg
->
fgs_identity_response
,
len
);
break
;
case
FGS_AUTHENTICATION_RESPONSE
:
encode_result
=
encode_fgs_authentication_response
(
&
mm_msg
->
fgs_auth_response
,
buffer
,
len
);
...
...
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