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
5b90bcbd
Commit
5b90bcbd
authored
8 years ago
by
FredericLeroy
Browse files
Options
Downloads
Patches
Plain Diff
UE/EMM/SAP: fix misuse of extern for emm_proc_plmn_selection_end() and emm_proc_status()
parent
b33b4df0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openair3/NAS/UE/EMM/SAP/emm_as.c
+7
-9
7 additions, 9 deletions
openair3/NAS/UE/EMM/SAP/emm_as.c
with
7 additions
and
9 deletions
openair3/NAS/UE/EMM/SAP/emm_as.c
+
7
−
9
View file @
5b90bcbd
...
@@ -53,6 +53,8 @@ Description Defines the EMMAS Service Access Point that provides
...
@@ -53,6 +53,8 @@ Description Defines the EMMAS Service Access Point that provides
#include
"emm_cause.h"
#include
"emm_cause.h"
#include
"LowerLayer.h"
#include
"LowerLayer.h"
#include
"emm_proc.h"
#include
<string.h>
// memset
#include
<string.h>
// memset
#include
<stdlib.h>
// malloc, free
#include
<stdlib.h>
// malloc, free
...
@@ -65,10 +67,6 @@ Description Defines the EMMAS Service Access Point that provides
...
@@ -65,10 +67,6 @@ Description Defines the EMMAS Service Access Point that provides
/**************** E X T E R N A L D E F I N I T I O N S ****************/
/**************** E X T E R N A L D E F I N I T I O N S ****************/
/****************************************************************************/
/****************************************************************************/
extern
int
emm_proc_plmn_selection_end
(
int
found
,
tac_t
tac
,
ci_t
ci
,
AcT_t
rat
);
extern
int
emm_proc_status
(
unsigned
int
ueid
,
int
emm_cause
);
/****************************************************************************/
/****************************************************************************/
/******************* L O C A L D E F I N I T I O N S *******************/
/******************* L O C A L D E F I N I T I O N S *******************/
/****************************************************************************/
/****************************************************************************/
...
@@ -108,7 +106,7 @@ static int _emm_as_release_ind(nas_user_t *user, const emm_as_release_t *msg);
...
@@ -108,7 +106,7 @@ static int _emm_as_release_ind(nas_user_t *user, const emm_as_release_t *msg);
static
int
_emm_as_page_ind
(
const
emm_as_page_t
*
msg
);
static
int
_emm_as_page_ind
(
const
emm_as_page_t
*
msg
);
static
int
_emm_as_cell_info_res
(
const
emm_as_cell_info_t
*
msg
);
static
int
_emm_as_cell_info_res
(
nas_user_t
*
user
,
const
emm_as_cell_info_t
*
msg
);
static
int
_emm_as_cell_info_ind
(
const
emm_as_cell_info_t
*
msg
);
static
int
_emm_as_cell_info_ind
(
const
emm_as_cell_info_t
*
msg
);
static
int
_emm_as_data_ind
(
nas_user_t
*
user
,
const
emm_as_data_t
*
msg
,
int
*
emm_cause
);
static
int
_emm_as_data_ind
(
nas_user_t
*
user
,
const
emm_as_data_t
*
msg
,
int
*
emm_cause
);
...
@@ -225,7 +223,7 @@ int emm_as_send(nas_user_t *user, const emm_as_t *msg)
...
@@ -225,7 +223,7 @@ int emm_as_send(nas_user_t *user, const emm_as_t *msg)
break
;
break
;
case
_EMMAS_CELL_INFO_RES
:
case
_EMMAS_CELL_INFO_RES
:
rc
=
_emm_as_cell_info_res
(
&
msg
->
u
.
cell_info
);
rc
=
_emm_as_cell_info_res
(
user
,
&
msg
->
u
.
cell_info
);
break
;
break
;
case
_EMMAS_CELL_INFO_IND
:
case
_EMMAS_CELL_INFO_IND
:
...
@@ -266,7 +264,7 @@ int emm_as_send(nas_user_t *user, const emm_as_t *msg)
...
@@ -266,7 +264,7 @@ int emm_as_send(nas_user_t *user, const emm_as_t *msg)
LOG_TRACE
(
WARNING
,
"EMMAS-SAP - Received EMM message is not valid "
LOG_TRACE
(
WARNING
,
"EMMAS-SAP - Received EMM message is not valid "
"(cause=%d)"
,
emm_cause
);
"(cause=%d)"
,
emm_cause
);
/* Return an EMM status message */
/* Return an EMM status message */
rc
=
emm_proc_status
(
ueid
,
emm_cause
);
rc
=
emm_proc_status
(
user
,
ueid
,
emm_cause
);
}
}
if
(
rc
!=
RETURNok
)
{
if
(
rc
!=
RETURNok
)
{
...
@@ -663,7 +661,7 @@ static int _emm_as_page_ind(const emm_as_page_t *msg)
...
@@ -663,7 +661,7 @@ static int _emm_as_page_ind(const emm_as_page_t *msg)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_emm_as_cell_info_res
(
const
emm_as_cell_info_t
*
msg
)
static
int
_emm_as_cell_info_res
(
nas_user_t
*
user
,
const
emm_as_cell_info_t
*
msg
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -685,7 +683,7 @@ static int _emm_as_cell_info_res(const emm_as_cell_info_t *msg)
...
@@ -685,7 +683,7 @@ static int _emm_as_cell_info_res(const emm_as_cell_info_t *msg)
}
}
/* Notify EMM that a cell has been found */
/* Notify EMM that a cell has been found */
rc
=
emm_proc_plmn_selection_end
(
msg
->
found
,
msg
->
tac
,
msg
->
cellID
,
AcT
);
rc
=
emm_proc_plmn_selection_end
(
user
,
msg
->
found
,
msg
->
tac
,
msg
->
cellID
,
AcT
);
LOG_FUNC_RETURN
(
rc
);
LOG_FUNC_RETURN
(
rc
);
}
}
...
...
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