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
lizhongxiao
OpenXG-RAN
Commits
19551d12
Commit
19551d12
authored
Nov 01, 2023
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove extern declaration from .c
parent
950becb4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
9 deletions
+11
-9
executables/nr-uesoftmodem.c
executables/nr-uesoftmodem.c
+0
-1
openair3/NAS/NR_UE/nr_nas_msg_sim.c
openair3/NAS/NR_UE/nr_nas_msg_sim.c
+1
-1
openair3/NAS/NR_UE/nr_nas_msg_sim.h
openair3/NAS/NR_UE/nr_nas_msg_sim.h
+10
-7
No files found.
executables/nr-uesoftmodem.c
View file @
19551d12
...
...
@@ -100,7 +100,6 @@ pthread_cond_t sync_cond;
pthread_mutex_t
sync_mutex
;
int
sync_var
=-
1
;
//!< protected by mutex \ref sync_mutex.
int
config_sync_var
=-
1
;
nr_nas_msg_snssai_t
nas_allowed_nssai
[
8
];
// not used in UE
instance_t
CUuniqInstance
=
0
;
...
...
openair3/NAS/NR_UE/nr_nas_msg_sim.c
View file @
19551d12
...
...
@@ -59,7 +59,7 @@ extern char *baseNetAddress;
extern
uint16_t
NB_UE_INST
;
static
nr_ue_nas_t
nr_ue_nas
=
{
0
};
static
nr_ue_nas_t
nr_ue_nas
;
extern
nr_nas_msg_snssai_t
nas_allowed_nssai
[
8
];
nr_nas_msg_snssai_t
nas_allowed_nssai
[
8
];
static
int
nas_protected_security_header_encode
(
char
*
buffer
,
...
...
openair3/NAS/NR_UE/nr_nas_msg_sim.h
View file @
19551d12
...
...
@@ -73,6 +73,16 @@
#define PAYLOAD_CONTAINER_LENGTH_MIN 3
#define PAYLOAD_CONTAINER_LENGTH_MAX 65537
/* List of allowed NSSAI from NAS messaging. */
typedef
struct
{
int
sst
;
int
hplmn_sst
;
int
sd
;
int
hplmn_sd
;
}
nr_nas_msg_snssai_t
;
extern
nr_nas_msg_snssai_t
nas_allowed_nssai
[
8
];
/* Security Key for SA UE */
typedef
struct
{
uint8_t
kausf
[
32
];
...
...
@@ -171,13 +181,6 @@ typedef struct {
fgs_sm_nas_msg_header_t
sm_nas_msg_header
;
}
dl_nas_transport_t
;
typedef
struct
{
int
sst
;
int
hplmn_sst
;
int
sd
;
int
hplmn_sd
;
}
nr_nas_msg_snssai_t
;
nr_ue_nas_t
*
get_ue_nas_info
(
module_id_t
module_id
);
void
generateRegistrationRequest
(
as_nas_info_t
*
initialNasMsg
,
nr_ue_nas_t
*
nas
);
void
*
nas_nrue_task
(
void
*
args_p
);
...
...
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