Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Olivier Crête
libnice
Commits
ead3453d
Commit
ead3453d
authored
Apr 12, 2016
by
Fabrice Bellet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conncheck: invoke the debug dump in more places
Differential Revision:
https://phabricator.freedesktop.org/D1123
parent
15c0546f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
agent/conncheck.c
agent/conncheck.c
+6
-0
No files found.
agent/conncheck.c
View file @
ead3453d
...
...
@@ -642,6 +642,8 @@ static gboolean priv_conn_check_tick_stream (NiceStream *stream, NiceAgent *agen
*/
pair
=
priv_conn_check_find_next_waiting
(
stream
->
conncheck_list
);
if
(
pair
)
{
priv_print_conn_check_lists
(
agent
,
G_STRFUNC
,
", got a pair in Waiting state"
);
priv_conn_check_initiate
(
agent
,
pair
);
return
TRUE
;
}
...
...
@@ -661,6 +663,8 @@ static gboolean priv_conn_check_tick_stream (NiceStream *stream, NiceAgent *agen
*/
pair
=
priv_conn_check_find_next_frozen
(
stream
->
conncheck_list
);
if
(
pair
)
{
priv_print_conn_check_lists
(
agent
,
G_STRFUNC
,
", got a pair in Frozen state"
);
pair
->
state
=
NICE_CHECK_WAITING
;
nice_debug
(
"Agent %p : pair %p state WAITING"
,
agent
,
pair
);
priv_conn_check_initiate
(
agent
,
pair
);
...
...
@@ -891,6 +895,8 @@ static gboolean priv_conn_check_tick_unlocked (NiceAgent *agent)
pair
=
priv_get_pair_from_triggered_check_queue
(
agent
);
if
(
pair
)
{
priv_print_conn_check_lists
(
agent
,
G_STRFUNC
,
", got a pair from triggered check list"
);
priv_conn_check_initiate
(
agent
,
pair
);
return
TRUE
;
}
...
...
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