-
Notifications
You must be signed in to change notification settings - Fork 111
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
Add TLS protocol #153
Add TLS protocol #153
Conversation
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.
As long as we're not simply removing /https, this seems reasonable. Let me quickly get a signoff from other libp2p devs but then I think we can probably just merge it.
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.
This looks good to me from the multiformats perspective. I can not comment on the Go side.
I think we should wait for a sign-off by @marten-seemann as well to ensure this is consistent long term with QUIC and HTTP3.
Added TLS protocol. There are plenty of applications of TLS protocol not in the context of using it with
http
orws
(e.g. ingPRC
), so it seems logical to add it. Code for it was taken from multicodec repo.There is multiformats/multiaddr#109 PR that suggests adding TLS protocol, mark
https
andwss
protocols as deprecated and start using/tls/http
and/tls/ws
instead.