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
b523682a
Commit
b523682a
authored
9 years ago
by
Xenofon Foukas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for UE state change message
parent
7b1ee53a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
openair2/ENB_APP/MESSAGES/V2/config_common.proto
openair2/ENB_APP/MESSAGES/V2/config_common.proto
+6
-0
openair2/ENB_APP/MESSAGES/V2/header.proto
openair2/ENB_APP/MESSAGES/V2/header.proto
+3
-0
openair2/ENB_APP/MESSAGES/V2/progran.proto
openair2/ENB_APP/MESSAGES/V2/progran.proto
+11
-0
No files found.
openair2/ENB_APP/MESSAGES/V2/config_common.proto
View file @
b523682a
...
...
@@ -172,3 +172,9 @@ enum prp_qos_bearer_type {
PRQBT_GBR
=
1
;
}
enum
prp_ue_state_change_type
{
PRUESC_UPDATED
=
0
;
PRUESC_ACTIVATED
=
1
;
PRUESC_DEACTIVATED
=
2
;
PRUESC_MOVED
=
3
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
openair2/ENB_APP/MESSAGES/V2/header.proto
View file @
b523682a
...
...
@@ -32,5 +32,8 @@ enum prp_type {
//Controller command messages
PRPT_DL_MAC_CONFIG
=
13
;
// UE state change messages
PRPT_UE_STATE_CHANGE
=
14
;
}
This diff is collapsed.
Click to expand it.
openair2/ENB_APP/MESSAGES/V2/progran.proto
View file @
b523682a
...
...
@@ -24,6 +24,7 @@ message progran_message {
prp_lc_config_request
lc_config_request_msg
=
12
;
prp_lc_config_reply
lc_config_reply_msg
=
13
;
prp_dl_mac_config
dl_mac_config_msg
=
14
;
prp_ue_state_change
ue_state_change_msg
=
15
;
}
}
...
...
@@ -159,6 +160,16 @@ message prp_dl_mac_config {
repeated
prp_pdcch_ofdm_sym_count
ofdm_sym
=
6
;
// OFDM symbol count for each CC
}
//
// UE state change message
//
message
prp_ue_state_change
{
optional
prp_header
header
=
1
;
optional
uint32
type
=
2
;
// One of the PRUESC_* values
optional
prp_ue_config
config
=
3
;
// Body of the message (based on type)
}
// Extensions of the echo request and reply
// messages for carrying a latency value in ms
message
prp_echo_request_latency
{
...
...
This diff is collapsed.
Click to expand it.
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