Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
mf
go-multiaddr
Commits
8ae68cf3
Unverified
Commit
8ae68cf3
authored
Feb 28, 2020
by
Steven Allen
Committed by
GitHub
Feb 28, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #122 from multiformats/feat/wss
feat: add wss protocol
parents
41a8e2e7
7bffa375
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
multiaddr_test.go
multiaddr_test.go
+4
-0
protocols.go
protocols.go
+7
-0
No files found.
multiaddr_test.go
View file @
8ae68cf3
...
...
@@ -149,6 +149,10 @@ func TestConstructSucceeds(t *testing.T) {
"/ip4/127.0.0.1/ipfs/QmcgpsyWgH8Y8ajJz1Cu72KnS5uo2Aa2LpzU7kinSupNKC/tcp/1234/unix/stdio"
,
"/ip4/127.0.0.1/p2p/QmcgpsyWgH8Y8ajJz1Cu72KnS5uo2Aa2LpzU7kinSupNKC/tcp/1234/unix/stdio"
,
"/ip4/127.0.0.1/tcp/9090/http/p2p-webrtc-direct"
,
"/ip4/127.0.0.1/tcp/127/ws"
,
"/ip4/127.0.0.1/tcp/127/ws"
,
"/ip4/127.0.0.1/tcp/127/wss"
,
"/ip4/127.0.0.1/tcp/127/wss"
,
}
for
_
,
a
:=
range
cases
{
...
...
protocols.go
View file @
8ae68cf3
...
...
@@ -29,6 +29,7 @@ const (
P_GARLIC32
=
0x01BF
P_P2P_WEBRTC_DIRECT
=
0x0114
P_WS
=
0x01DD
P_WSS
=
0x01DE
)
var
(
...
...
@@ -201,6 +202,11 @@ var (
Code
:
P_WS
,
VCode
:
CodeToVarint
(
P_WS
),
}
protoWSS
=
Protocol
{
Name
:
"wss"
,
Code
:
P_WSS
,
VCode
:
CodeToVarint
(
P_WSS
),
}
)
func
init
()
{
...
...
@@ -230,6 +236,7 @@ func init() {
protoUNIX
,
protoP2P_WEBRTC_DIRECT
,
protoWS
,
protoWSS
,
}
{
if
err
:=
AddProtocol
(
p
);
err
!=
nil
{
panic
(
err
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment