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
dd2e2083
Commit
dd2e2083
authored
9 years ago
by
Xenofon Foukas
Browse files
Options
Downloads
Patches
Plain Diff
Added protocol support for agent policy reconfiguration
parent
9c9d3f45
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openair2/ENB_APP/MESSAGES/V2/header.proto
+1
-0
1 addition, 0 deletions
openair2/ENB_APP/MESSAGES/V2/header.proto
openair2/ENB_APP/MESSAGES/V2/progran.proto
+11
-1
11 additions, 1 deletion
openair2/ENB_APP/MESSAGES/V2/progran.proto
with
12 additions
and
1 deletion
openair2/ENB_APP/MESSAGES/V2/header.proto
+
1
−
0
View file @
dd2e2083
...
@@ -38,5 +38,6 @@ enum prp_type {
...
@@ -38,5 +38,6 @@ enum prp_type {
// Control delegation messages
// Control delegation messages
PRPT_DELEGATE_CONTROL
=
15
;
PRPT_DELEGATE_CONTROL
=
15
;
PRPT_RECONFIGURE_AGENT
=
16
;
}
}
This diff is collapsed.
Click to expand it.
openair2/ENB_APP/MESSAGES/V2/progran.proto
+
11
−
1
View file @
dd2e2083
...
@@ -27,6 +27,7 @@ message progran_message {
...
@@ -27,6 +27,7 @@ message progran_message {
prp_dl_mac_config
dl_mac_config_msg
=
14
;
prp_dl_mac_config
dl_mac_config_msg
=
14
;
prp_ue_state_change
ue_state_change_msg
=
15
;
prp_ue_state_change
ue_state_change_msg
=
15
;
prp_control_delegation
control_delegation_msg
=
16
;
prp_control_delegation
control_delegation_msg
=
16
;
prp_agent_reconfiguration
agent_reconfiguration_msg
=
17
;
}
}
}
}
...
@@ -180,7 +181,16 @@ message prp_control_delegation {
...
@@ -180,7 +181,16 @@ message prp_control_delegation {
optional
prp_header
header
=
1
;
optional
prp_header
header
=
1
;
optional
uint32
delegation_type
=
2
;
// Bitmap of PRCDT_* flags
optional
uint32
delegation_type
=
2
;
// Bitmap of PRCDT_* flags
optional
bytes
payload
=
3
;
// Byte array of shared lib containing the delegated functions
optional
bytes
payload
=
3
;
// Byte array of shared lib containing the delegated functions
repeated
string
name
=
4
;
// The delegated functions names ordered based on bitmap flags
optional
string
name
=
4
;
// The delegated functions names ordered based on bitmap flags
}
//
// Agent reconfiguration message
//
message
prp_agent_reconfiguration
{
optional
prp_header
header
=
1
;
optional
string
policy
=
2
;
// The policy changes using YAML syntax in string format
}
}
// Extensions of the echo request and reply
// Extensions of the echo request and reply
...
...
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