This is an automated email from the git hooks/post-receive script.
cohosh pushed a commit to branch main in repository pluggable-transports/snowflake-webext.
commit 07742beb2779d9d05646f1849495a14bda724664 Author: 5eba 5eba@untiy-mail.de AuthorDate: Tue Mar 22 17:39:00 2022 +0100
removed obsolete comments --- proxypair.js | 2 -- snowflake.js | 1 - 2 files changed, 3 deletions(-)
diff --git a/proxypair.js b/proxypair.js index 4066c02..169511b 100644 --- a/proxypair.js +++ b/proxypair.js @@ -40,8 +40,6 @@ class ProxyPair { this.pc.onicecandidate = (evt) => { // Browser sends a null candidate once the ICE gathering completes. if (null === evt.candidate && this.pc.connectionState !== 'closed') { - // TODO: Use a promise.all to tell Snowflake about all offers at once, - // once multiple proxypairs are supported. dbg('Finished gathering ICE candidates.'); snowflake.broker.sendAnswer(this.id, this.pc.localDescription); } diff --git a/snowflake.js b/snowflake.js index 4e9396e..03b0229 100644 --- a/snowflake.js +++ b/snowflake.js @@ -11,7 +11,6 @@ this proxy must always act as the answerer. TODO: More documentation */
-// Minimum viable snowflake for now - just 1 client. class Snowflake {
// Prepare the Snowflake with a Broker (to find clients) and optional UI.