Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OAI-RAN-5G-sheduler_MaxTBS
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
MAQ5G-PFC
OAI-RAN-5G-sheduler_MaxTBS
Commits
d741b951
Commit
d741b951
authored
7 years ago
by
Robert Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
define&send IMSI in Protobuf
parent
df43d19c
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/config_messages.proto
+1
-0
1 addition, 0 deletions
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
openair2/ENB_APP/flexran_agent_common.c
+2
-0
2 additions, 0 deletions
openair2/ENB_APP/flexran_agent_common.c
with
3 additions
and
0 deletions
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
+
1
−
0
View file @
d741b951
...
...
@@ -81,6 +81,7 @@ message flex_ue_config {
optional
uint32
pcell_carrier_index
=
27
;
// Index of primary cell
repeated
flex_scell_config
scell_config
=
28
;
// Secondary cells configuration
optional
uint32
scell_deactivation_timer
=
29
;
// Deactivation timer for secondary cell
optional
uint64
imsi
=
30
;
}
message
flex_lc_ue_config
{
...
...
This diff is collapsed.
Click to expand it.
openair2/ENB_APP/flexran_agent_common.c
+
2
−
0
View file @
d741b951
...
...
@@ -589,6 +589,8 @@ int flexran_agent_ue_config_reply(mid_t mod_id, const void *params, Protocol__Fl
ue_config
[
i
]
->
rnti
=
flexran_get_ue_crnti
(
mod_id
,
i
);
ue_config
[
i
]
->
has_rnti
=
1
;
ue_config
[
i
]
->
imsi
=
flexran_get_ue_imsi
(
mod_id
,
i
);
ue_config
[
i
]
->
has_imsi
=
1
;
//TODO: Set the DRX configuration (optional)
//Not supported for now, so we do not set it
...
...
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