mirror of
https://github.com/logos-messaging/go-multiaddr.git
synced 2026-01-04 05:53:05 +00:00
Merge pull request #93 from backkem/p2p-webrtc-direct
Add p2p-webrtc-direct protocol
This commit is contained in:
commit
152990b98b
@ -68,6 +68,7 @@ func TestConstructFails(t *testing.T) {
|
||||
"/ip4/127.0.0.1/p2p/tcp",
|
||||
"/unix",
|
||||
"/ip4/1.2.3.4/tcp/80/unix",
|
||||
"/ip4/127.0.0.1/tcp/9090/http/p2p-webcrt-direct",
|
||||
}
|
||||
|
||||
for _, a := range cases {
|
||||
@ -127,6 +128,7 @@ func TestConstructSucceeds(t *testing.T) {
|
||||
"/ip4/1.2.3.4/tcp/80/unix/a/b/c/d/e/f",
|
||||
"/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",
|
||||
}
|
||||
|
||||
for _, a := range cases {
|
||||
|
||||
@ -24,6 +24,7 @@ const (
|
||||
P_ONION = 0x01BC // also for backwards compatibility
|
||||
P_ONION3 = 0x01BD
|
||||
P_GARLIC64 = 0x01CA
|
||||
P_P2P_WEBRTC_DIRECT = 0x0114
|
||||
)
|
||||
|
||||
var (
|
||||
@ -143,6 +144,11 @@ var (
|
||||
Path: true,
|
||||
Transcoder: TranscoderUnix,
|
||||
}
|
||||
protoP2P_WEBRTC_DIRECT = Protocol{
|
||||
Name: "p2p-webrtc-direct",
|
||||
Code: P_P2P_WEBRTC_DIRECT,
|
||||
VCode: CodeToVarint(P_P2P_WEBRTC_DIRECT),
|
||||
}
|
||||
)
|
||||
|
||||
func init() {
|
||||
@ -164,6 +170,7 @@ func init() {
|
||||
protoHTTPS,
|
||||
protoP2P,
|
||||
protoUNIX,
|
||||
protoP2P_WEBRTC_DIRECT,
|
||||
} {
|
||||
if err := AddProtocol(p); err != nil {
|
||||
panic(err)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user