Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Worker.N
openairinterface5G
Commits
b8ce24fe
Commit
b8ce24fe
authored
6 years ago
by
Louis Adrien Dufrene
Browse files
Options
Downloads
Patches
Plain Diff
add changes to s1ap_eNB.c
parent
1c196a9e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openair3/S1AP/s1ap_eNB.c
+14
-8
14 additions, 8 deletions
openair3/S1AP/s1ap_eNB.c
with
14 additions
and
8 deletions
openair3/S1AP/s1ap_eNB.c
+
14
−
8
View file @
b8ce24fe
...
@@ -444,16 +444,22 @@ void *s1ap_eNB_task(void *arg)
...
@@ -444,16 +444,22 @@ void *s1ap_eNB_task(void *arg)
return
NULL
;
return
NULL
;
}
}
//-----------------------------------------------------------------------------
/*
* eNB generate a S1 setup request towards MME
*/
static
int
s1ap_eNB_generate_s1_setup_request
(
static
int
s1ap_eNB_generate_s1_setup_request
(
s1ap_eNB_instance_t
*
instance_p
,
s1ap_eNB_mme_data_t
*
s1ap_mme_data_p
)
s1ap_eNB_instance_t
*
instance_p
,
s1ap_eNB_mme_data_t
*
s1ap_mme_data_p
)
//-----------------------------------------------------------------------------
{
{
S1AP_S1AP_PDU_t
pdu
;
S1AP_S1AP_PDU_t
pdu
;
S1AP_S1SetupRequest_t
*
out
;
S1AP_S1SetupRequest_t
*
out
=
NULL
;
S1AP_S1SetupRequestIEs_t
*
ie
;
S1AP_S1SetupRequestIEs_t
*
ie
=
NULL
;
S1AP_SupportedTAs_Item_t
*
ta
;
S1AP_SupportedTAs_Item_t
*
ta
=
NULL
;
S1AP_PLMNidentity_t
*
plmn
;
S1AP_PLMNidentity_t
*
plmn
=
NULL
;
uint8_t
*
buffer
;
uint8_t
*
buffer
=
NULL
;
uint32_t
len
;
uint32_t
len
=
0
;
int
ret
=
0
;
int
ret
=
0
;
DevAssert
(
instance_p
!=
NULL
);
DevAssert
(
instance_p
!=
NULL
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment