Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
openairinterface5G
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
20
Merge Requests
20
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
oai
openairinterface5G
Commits
d741b951
Commit
d741b951
authored
Feb 13, 2018
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
define&send IMSI in Protobuf
parent
df43d19c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
+1
-0
openair2/ENB_APP/flexran_agent_common.c
openair2/ENB_APP/flexran_agent_common.c
+2
-0
No files found.
openair2/ENB_APP/MESSAGES/V2/config_messages.proto
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
{
...
...
openair2/ENB_APP/flexran_agent_common.c
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
...
...
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