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
wangjie
OpenXG-RAN
Commits
3835f106
Commit
3835f106
authored
Jul 21, 2016
by
Frédéric Leroy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UE/ESM: move esm_indication_callback_t from openair2 to esm_ebr.h
parent
3df061b5
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
7 deletions
+12
-7
openair2/COMMON/networkDef.h
openair2/COMMON/networkDef.h
+0
-7
openair3/NAS/UE/API/USER/user_api.c
openair3/NAS/UE/API/USER/user_api.c
+1
-0
openair3/NAS/UE/ESM/esm_ebr.h
openair3/NAS/UE/ESM/esm_ebr.h
+8
-0
openair3/NAS/UE/ESM/esm_main.h
openair3/NAS/UE/ESM/esm_main.h
+1
-0
openair3/NAS/UE/nas_proc.h
openair3/NAS/UE/nas_proc.h
+1
-0
openair3/NAS/UE/nas_user.h
openair3/NAS/UE/nas_user.h
+1
-0
No files found.
openair2/COMMON/networkDef.h
View file @
3835f106
...
@@ -252,13 +252,6 @@ typedef struct {
...
@@ -252,13 +252,6 @@ typedef struct {
network_pkf_t
*
pkf
[
NET_PACKET_FILTER_MAX
];
network_pkf_t
*
pkf
[
NET_PACKET_FILTER_MAX
];
}
network_tft_t
;
}
network_tft_t
;
/*
* User notification callback, executed whenever a change of status with
* respect of PDN connection or EPS bearer context is notified by the EPS
* Session Management sublayer
*/
typedef
int
(
*
esm_indication_callback_t
)
(
int
,
network_pdn_state_t
);
/****************************************************************************/
/****************************************************************************/
/******************** G L O B A L V A R I A B L E S ********************/
/******************** G L O B A L V A R I A B L E S ********************/
/****************************************************************************/
/****************************************************************************/
...
...
openair3/NAS/UE/API/USER/user_api.c
View file @
3835f106
...
@@ -48,6 +48,7 @@ Description Implements the API used by the NAS layer running in the UE
...
@@ -48,6 +48,7 @@ Description Implements the API used by the NAS layer running in the UE
#include "at_command.h"
#include "at_command.h"
#include "at_response.h"
#include "at_response.h"
#include "at_error.h"
#include "at_error.h"
#include "esm_ebr.h"
#include "user_indication.h"
#include "user_indication.h"
...
...
openair3/NAS/UE/ESM/esm_ebr.h
View file @
3835f106
...
@@ -42,6 +42,7 @@ Description Defines functions used to handle state of EPS bearer contexts
...
@@ -42,6 +42,7 @@ Description Defines functions used to handle state of EPS bearer contexts
#include "OctetString.h"
#include "OctetString.h"
#include "networkDef.h"
#include "networkDef.h"
#include "esmData.h"
#include "nas_timer.h"
#include "nas_timer.h"
...
@@ -56,6 +57,13 @@ Description Defines functions used to handle state of EPS bearer contexts
...
@@ -56,6 +57,13 @@ Description Defines functions used to handle state of EPS bearer contexts
/************************ G L O B A L T Y P E S ************************/
/************************ G L O B A L T Y P E S ************************/
/****************************************************************************/
/****************************************************************************/
/*
* User notification callback, executed whenever a change of status with
* respect of PDN connection or EPS bearer context is notified by the EPS
* Session Management sublayer
*/
typedef
int
(
*
esm_indication_callback_t
)
(
int
,
network_pdn_state_t
);
/****************************************************************************/
/****************************************************************************/
/******************** G L O B A L V A R I A B L E S ********************/
/******************** G L O B A L V A R I A B L E S ********************/
/****************************************************************************/
/****************************************************************************/
...
...
openair3/NAS/UE/ESM/esm_main.h
View file @
3835f106
...
@@ -41,6 +41,7 @@ Description Defines the EPS Session Management procedure call manager,
...
@@ -41,6 +41,7 @@ Description Defines the EPS Session Management procedure call manager,
#define __ESM_MAIN_H__
#define __ESM_MAIN_H__
#include "networkDef.h"
#include "networkDef.h"
#include "esm_ebr.h"
/****************************************************************************/
/****************************************************************************/
/********************* G L O B A L C O N S T A N T S *******************/
/********************* G L O B A L C O N S T A N T S *******************/
...
...
openair3/NAS/UE/nas_proc.h
View file @
3835f106
...
@@ -41,6 +41,7 @@ Description NAS procedure call manager
...
@@ -41,6 +41,7 @@ Description NAS procedure call manager
#include "commonDef.h"
#include "commonDef.h"
#include "networkDef.h"
#include "networkDef.h"
#include "emm_main.h"
#include "emm_main.h"
#include "esm_ebr.h"
/****************************************************************************/
/****************************************************************************/
/********************* G L O B A L C O N S T A N T S *******************/
/********************* G L O B A L C O N S T A N T S *******************/
...
...
openair3/NAS/UE/nas_user.h
View file @
3835f106
...
@@ -41,6 +41,7 @@ Description NAS procedure functions triggered by the user
...
@@ -41,6 +41,7 @@ Description NAS procedure functions triggered by the user
#include "commonDef.h"
#include "commonDef.h"
#include "networkDef.h"
#include "networkDef.h"
#include "emm_main.h"
#include "emm_main.h"
#include "esm_ebr.h"
/****************************************************************************/
/****************************************************************************/
/********************* G L O B A L C O N S T A N T S *******************/
/********************* G L O B A L C O N S T A N T S *******************/
...
...
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