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
spbro
OpenXG-RAN
Commits
2a5413c4
Commit
2a5413c4
authored
Jan 06, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add some logs when activating/deactivating the 2nd CC
parent
739d5961
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
openair2/RRC/LITE/rrc_eNB.c
openair2/RRC/LITE/rrc_eNB.c
+14
-0
No files found.
openair2/RRC/LITE/rrc_eNB.c
View file @
2a5413c4
...
...
@@ -4988,6 +4988,8 @@ static void *th(void *_)
struct
sockaddr_in
addr
;
MessageDef
*
msg
;
socklen_t
len
;
char
s
[
256
];
int
r
;
sock
=
socket
(
AF_INET
,
SOCK_STREAM
,
0
);
if
(
sock
==
-
1
)
abort
();
...
...
@@ -5007,9 +5009,21 @@ static void *th(void *_)
len
=
sizeof
(
addr
);
fd
=
accept
(
sock
,
(
struct
sockaddr
*
)
&
addr
,
&
len
);
if
(
fd
==
-
1
)
abort
();
sprintf
(
s
,
"press enter to activate 2nd CC of UE 0
\n
"
);
r
=
strlen
(
s
);
if
(
write
(
fd
,
s
,
r
)
!=
r
)
{
printf
(
"error writing to 4012 socket
\n
"
);
abort
();
}
while
(
1
)
{
if
(
read
(
fd
,
&
c
,
1
)
!=
1
)
abort
();
if
(
c
!=
'\n'
)
continue
;
{
/* some feedback sent to the socket */
eNB_MAC_INST
*
eNB
=&
eNB_mac_inst
[
0
];
UE_SCell_config_t
*
sconf
=
&
eNB
->
UE_list
.
scell_config
[
0
];
sprintf
(
s
,
"let's %s the 2nd CC for UE 0!
\n
"
,
sconf
->
scell
[
0
].
active
?
"deactivate"
:
"activate"
);
r
=
strlen
(
s
);
if
(
write
(
fd
,
s
,
r
)
!=
r
)
{
printf
(
"error writing to 4012 socket
\n
"
);
abort
();
}
}
msg
=
itti_alloc_new_message
(
TASK_RRC_ENB
,
CROUX_HACK
);
CROUX_HACK
(
msg
).
x
=
10
;
itti_send_msg_to_task
(
TASK_RRC_ENB
,
0
,
msg
);
...
...
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