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
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
Show 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
...
@@ -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
);
pair
=
priv_conn_check_find_next_waiting
(
stream
->
conncheck_list
);
if
(
pair
)
{
if
(
pair
)
{
priv_print_conn_check_lists
(
agent
,
G_STRFUNC
,
", got a pair in Waiting state"
);
priv_conn_check_initiate
(
agent
,
pair
);
priv_conn_check_initiate
(
agent
,
pair
);
return
TRUE
;
return
TRUE
;
}
}
...
@@ -661,6 +663,8 @@ static gboolean priv_conn_check_tick_stream (NiceStream *stream, NiceAgent *agen
...
@@ -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
);
pair
=
priv_conn_check_find_next_frozen
(
stream
->
conncheck_list
);
if
(
pair
)
{
if
(
pair
)
{
priv_print_conn_check_lists
(
agent
,
G_STRFUNC
,
", got a pair in Frozen state"
);
pair
->
state
=
NICE_CHECK_WAITING
;
pair
->
state
=
NICE_CHECK_WAITING
;
nice_debug
(
"Agent %p : pair %p state WAITING"
,
agent
,
pair
);
nice_debug
(
"Agent %p : pair %p state WAITING"
,
agent
,
pair
);
priv_conn_check_initiate
(
agent
,
pair
);
priv_conn_check_initiate
(
agent
,
pair
);
...
@@ -891,6 +895,8 @@ static gboolean priv_conn_check_tick_unlocked (NiceAgent *agent)
...
@@ -891,6 +895,8 @@ static gboolean priv_conn_check_tick_unlocked (NiceAgent *agent)
pair
=
priv_get_pair_from_triggered_check_queue
(
agent
);
pair
=
priv_get_pair_from_triggered_check_queue
(
agent
);
if
(
pair
)
{
if
(
pair
)
{
priv_print_conn_check_lists
(
agent
,
G_STRFUNC
,
", got a pair from triggered check list"
);
priv_conn_check_initiate
(
agent
,
pair
);
priv_conn_check_initiate
(
agent
,
pair
);
return
TRUE
;
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