-
-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RFC: introduce function SetRemoteGatherDone #1131
Conversation
…of gathering on remote side
@@ -664,6 +666,8 @@ void IceTransport::setRemoteDescription(const Description &description) { | |||
throw std::invalid_argument("Invalid ICE settings from remote SDP"); | |||
} | |||
|
|||
void IceTransport::setRemoteGatherDone() {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quick search didn't find similar function in libnice.
}); | ||
|
||
pc1.onLocalCandidate([&pc2](Candidate candidate) { | ||
if (candidate.type() == rtc::Candidate::Type::Host) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably should allow only srflx and relay instead of filtering host ?
There are a few issues with this:
|
@paullouisageneau thank you for your review and the comment! I think we can abandon this PR. |
I was experimenting gathering complete signal. It seems juice_set_remote_gathering_done should be called at the end of candidate gathering phase.
The reason for this PR is issue #1130. At this time I have no data to confirm that this PR fixes anything.