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
07d3caa5
Commit
07d3caa5
authored
Jun 04, 2019
by
Fabrice Bellet
Committed by
Olivier Crête
Jul 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "conncheck: Don't lookup prflx pair for UDP candidates"
This reverts commit
ca47519f
.
parent
71a8a9e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
agent/conncheck.c
agent/conncheck.c
+5
-7
No files found.
agent/conncheck.c
View file @
07d3caa5
...
@@ -3052,13 +3052,11 @@ static CandidateCheckPair *priv_process_response_check_for_reflexive(NiceAgent *
...
@@ -3052,13 +3052,11 @@ static CandidateCheckPair *priv_process_response_check_for_reflexive(NiceAgent *
* of a TCP-ACTIVE local candidate, so we find it even if an incoming
* of a TCP-ACTIVE local candidate, so we find it even if an incoming
* check matched an existing pair because it could be the original
* check matched an existing pair because it could be the original
* ACTIVE-PASSIVE candidate pair which was retriggered */
* ACTIVE-PASSIVE candidate pair which was retriggered */
if
(
local_cand
->
transport
!=
NICE_CANDIDATE_TRANSPORT_UDP
)
{
for
(
i
=
stream
->
conncheck_list
;
i
;
i
=
i
->
next
)
{
for
(
i
=
stream
->
conncheck_list
;
i
;
i
=
i
->
next
)
{
CandidateCheckPair
*
pair
=
i
->
data
;
CandidateCheckPair
*
pair
=
i
->
data
;
if
(
pair
->
local
==
cand
&&
remote_candidate
==
pair
->
remote
)
{
if
(
pair
->
local
==
cand
&&
remote_candidate
==
pair
->
remote
)
{
new_pair
=
pair
;
new_pair
=
pair
;
break
;
break
;
}
}
}
}
}
break
;
break
;
...
...
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