Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
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
cpp-libs
libnice
Commits
3220abce
Commit
3220abce
authored
Apr 19, 2020
by
Fabrice Bellet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conncheck: add a couple of switch case fallthroughs
parent
692b1055
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
agent/conncheck.c
agent/conncheck.c
+3
-9
No files found.
agent/conncheck.c
View file @
3220abce
...
...
@@ -1421,11 +1421,8 @@ static gboolean priv_conn_keepalive_retransmissions_tick_agent_locked (
nice_debug
(
"Agent %p : Retransmitting keepalive conncheck"
,
agent
);
agent_timeout_add_with_context
(
agent
,
&
pair
->
keepalive
.
tick_source
,
"Pair keepalive"
,
stun_timer_remainder
(
&
pair
->
keepalive
.
timer
),
priv_conn_keepalive_retransmissions_tick_agent_locked
,
pair
);
break
;
G_GNUC_FALLTHROUGH
;
case
STUN_USAGE_TIMER_RETURN_SUCCESS
:
agent_timeout_add_with_context
(
agent
,
&
pair
->
keepalive
.
tick_source
,
...
...
@@ -1794,10 +1791,7 @@ static gboolean priv_turn_allocate_refresh_retransmissions_tick_agent_locked (
agent_socket_send
(
cand
->
nicesock
,
&
cand
->
server
,
stun_message_length
(
&
cand
->
stun_message
),
(
gchar
*
)
cand
->
stun_buffer
);
agent_timeout_add_with_context
(
agent
,
&
cand
->
tick_source
,
"Candidate TURN refresh"
,
stun_timer_remainder
(
&
cand
->
timer
),
priv_turn_allocate_refresh_retransmissions_tick_agent_locked
,
cand
);
break
;
G_GNUC_FALLTHROUGH
;
case
STUN_USAGE_TIMER_RETURN_SUCCESS
:
agent_timeout_add_with_context
(
agent
,
&
cand
->
tick_source
,
"Candidate TURN refresh"
,
stun_timer_remainder
(
&
cand
->
timer
),
...
...
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