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
6749c5f7
Commit
6749c5f7
authored
3 years ago
by
Laurent THOMAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make more accurate sctp socket failure messages
parent
d249c1ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
openair3/SCTP/sctp_eNB_task.c
openair3/SCTP/sctp_eNB_task.c
+8
-1
No files found.
openair3/SCTP/sctp_eNB_task.c
View file @
6749c5f7
...
...
@@ -1026,7 +1026,14 @@ sctp_eNB_read_from_socket(
break
;
default:
SCTP_WARN
(
"unhandled: SCTP_ASSOC_CHANGE to %d
\n
"
,
sctp_assoc_changed
->
sac_state
);
if
(
sctp_assoc_changed
->
sac_state
==
SCTP_SHUTDOWN_COMP
)
SCTP_WARN
(
"SCTP_ASSOC_CHANGE to SSCTP_SHUTDOWN_COMP
\n
"
);
if
(
sctp_assoc_changed
->
sac_state
==
SCTP_RESTART
)
SCTP_WARN
(
"SCTP_ASSOC_CHANGE to SCTP_RESTART
\n
"
);
if
(
sctp_assoc_changed
->
sac_state
==
SCTP_CANT_STR_ASSOC
)
SCTP_ERROR
(
"SCTP_ASSOC_CHANGE to SCTP_CANT_STR_ASSOC
\n
"
);
if
(
sctp_assoc_changed
->
sac_state
==
SCTP_COMM_LOST
)
SCTP_ERROR
(
"SCTP_ASSOC_CHANGE to SCTP_COMM_LOST
\n
"
);
break
;
}
}
...
...
This diff is collapsed.
Click to expand 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