-
Notifications
You must be signed in to change notification settings - Fork 86
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
fix: Rename webrtc-w3c to webrtc-private-to-private #151
Conversation
We have decided to rename `webrtc-w3c` to `webrtc-private-to-private`. See rational in multiformats#150. No software has been released using `webrtc-w3c`, thus renaming is not a breaking change.
Friendly ping @achingbrain, @MarcoPolo and @marten-seemann. |
Cross posting my comment from here as it's a closed issue:
I realise it's the 11th hour, but it seems that The browser-to-server That's fine and all, but the unadorned |
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.
Not that I want to put words in @marten-seemann's mouth, but from a different channel:
achingbrain So you'd be happy calling browser to browser /webrtc and browser to server /webrtc+sdp-munging?
Marten Seemann Yes. I actually like calling out that we’re doing the munging
Because that’s the crucial difference between the two
This makes it clear that a spec compliant WebRTC implementation can use this address to communicate, and ones that are more flexible can let peers know that they can use SDP munging via a different address.
@@ -36,6 +36,6 @@ code, size, name, comment | |||
275, 0, p2p-webrtc-star, | |||
276, 0, p2p-webrtc-direct, | |||
280, 0, webrtc, ICE-lite webrtc transport |
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.
280, 0, webrtc, ICE-lite webrtc transport | |
280, 0, webrtc+sdp-munging, ICE-lite WebRTC transport with SDP munging |
@@ -36,6 +36,6 @@ code, size, name, comment | |||
275, 0, p2p-webrtc-star, | |||
276, 0, p2p-webrtc-direct, | |||
280, 0, webrtc, ICE-lite webrtc transport | |||
281, 0, webrtc-w3c, webrtc transport where connection establishment is according to w3c spec | |||
281, 0, webrtc-private-to-private, WebRTC transport establishing connection between two private nodes |
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.
281, 0, webrtc-private-to-private, WebRTC transport establishing connection between two private nodes | |
281, 0, webrtc, WebRTC transport establishing connection between two WebRTC spec compliant nodes |
Following on from #150 and an replacement for #151 Renames: - `/webrtc-w3c` -> `/webrtc` - AKA browser to browser - `/webrtc` -> `/webrtc-direct` - AKA browser to server Discussion: - This option was mentioned in #150 and seemed to have a reasonable amount of support but seemed to get lost amongst the other options - The differences in the protocols is mentioned in the table comments
Following on from #150 and an replacement for #151 Renames: - `/webrtc-w3c` -> `/webrtc` - AKA browser to browser - `/webrtc` -> `/webrtc+sdp-munging` - AKA browser to server Discussion: - This option comes from comments on #151 - It got a lukewarm reception on the triage call so it's presented as an option along with #152 - Adding `+sdp-munging` makes it more explicit about the differences, though admittedly there are other differences that aren't encapsulated in the name - People were uncertain about universal understanding of the term "SDP munging"
Following on from #150 and an replacement for #151 Renames: - `/webrtc-w3c` -> `/webrtc` - AKA browser to browser - `/webrtc` -> `/webrtc-direct` - AKA browser to server Discussion: - This option was mentioned in #150 and seemed to have a reasonable amount of support but seemed to get lost amongst the other options - The differences in the protocols is mentioned in the table comments
Closing in favour of #152 |
Summary
We have decided to rename
webrtc-w3c
towebrtc-private-to-private
. See rational in #150.No software has been released using
webrtc-w3c
, thus renaming is not a breaking change.Before Merge