Skip to content
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: support /quic-v1 #2073

Merged
merged 1 commit into from
Dec 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions patches/multiaddr+8.1.2.patch
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ index 7258b50..09f28f9 100644

case 421: // ipfs
diff --git a/node_modules/multiaddr/src/protocols-table.js b/node_modules/multiaddr/src/protocols-table.js
index 4578e43..840f7b2 100644
index 4578e43..db46337 100644
--- a/node_modules/multiaddr/src/protocols-table.js
+++ b/node_modules/multiaddr/src/protocols-table.js
@@ -52,6 +52,8 @@ Protocols.table = [
@@ -52,6 +52,9 @@ Protocols.table = [
[445, 296, 'onion3'],
[446, V, 'garlic64'],
[460, 0, 'quic'],
+ [461, 0, 'quic-v1'],
+ [465, 0, 'webtransport'],
+ [466, V, 'certhash'],
[477, 0, 'ws'],
Expand Down