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
b572ecc5
Commit
b572ecc5
authored
Apr 23, 2014
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conncheck: Don't fail a stream that has on-going discovery
parent
5bbed7e4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
agent/conncheck.c
agent/conncheck.c
+13
-1
No files found.
agent/conncheck.c
View file @
b572ecc5
...
...
@@ -1162,6 +1162,18 @@ static void priv_update_check_list_failed_components (NiceAgent *agent, Stream *
* must be fetched before entering the loop*/
guint
c
,
components
=
stream
->
n_components
;
for
(
i
=
agent
->
discovery_list
;
i
;
i
=
i
->
next
)
{
CandidateDiscovery
*
d
=
i
->
data
;
/* There is still discovery ogoing for this stream,
* so don't fail any of it's candidates.
*/
if
(
d
->
stream
==
stream
&&
!
d
->
done
)
return
;
}
if
(
agent
->
discovery_list
!=
NULL
)
return
;
/* note: iterate the conncheck list for each component separately */
for
(
c
=
0
;
c
<
components
;
c
++
)
{
Component
*
comp
=
NULL
;
...
...
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