Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
5b2aa91b
Commit
5b2aa91b
authored
Aug 21, 2020
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FlexRAN: new agent reconfiguration syntax, instead of YAML
parent
d2204bb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
openair2/ENB_APP/MESSAGES/V2/control_delegation.proto
openair2/ENB_APP/MESSAGES/V2/control_delegation.proto
+20
-0
openair2/ENB_APP/MESSAGES/V2/flexran.proto
openair2/ENB_APP/MESSAGES/V2/flexran.proto
+1
-0
No files found.
openair2/ENB_APP/MESSAGES/V2/control_delegation.proto
View file @
5b2aa91b
...
...
@@ -5,3 +5,23 @@ enum flex_control_delegation_type {
FLCDT_MAC_DL_UE_SCHEDULER
=
1
;
// DL UE scheduler delegation
FLCDT_AGENT_CONTROL_APP
=
2
;
// Generic control application
}
message
flex_agent_reconfiguration_system
{
optional
string
system
=
1
;
repeated
flex_agent_reconfiguration_subsystem
subsystems
=
2
;
}
message
flex_agent_reconfiguration_subsystem
{
optional
string
name
=
1
;
// Name of the object (app name or user plane object)
optional
string
behavior
=
2
;
// For an app: a callback in a shared library. For any other subsystem: an object name (shared library) with defined syntax.
map
<
string
,
flex_agent_reconfiguration_param
>
params
=
3
;
// Param configurations depending on callback/shared library above.
}
message
flex_agent_reconfiguration_param
{
oneof
param
{
int32
integer
=
1
;
float
floating
=
2
;
bool
boolean
=
3
;
string
str
=
4
;
}
}
openair2/ENB_APP/MESSAGES/V2/flexran.proto
View file @
5b2aa91b
...
...
@@ -237,6 +237,7 @@ message flex_control_delegation {
message
flex_agent_reconfiguration
{
optional
flex_header
header
=
1
;
optional
string
policy
=
2
;
// The policy changes using YAML syntax in string format
repeated
flex_agent_reconfiguration_system
systems
=
3
;
// The policy changes.
}
// Extensions of the echo request and reply
...
...
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