Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
go-libp2p-quic-transport
Commits
fc41d585
Commit
fc41d585
authored
Jun 16, 2018
by
Marten Seemann
Browse files
use multiaddr.Encapsulate to create QUIC multiaddrs
parent
782b1004
Changes
1
Hide whitespace changes
Inline
Side-by-side
conn.go
View file @
fc41d585
...
...
@@ -82,15 +82,14 @@ func (c *conn) Transport() tpt.Transport {
return
c
.
transport
}
// TODO: there must be a better way to do this
func
quicMultiaddr
(
na
net
.
Addr
)
(
ma
.
Multiaddr
,
error
)
{
udpMA
,
err
:=
manet
.
FromNetAddr
(
na
)
if
err
!=
nil
{
return
nil
,
err
}
quicMA
,
err
:=
ma
.
NewMultiaddr
(
udpMA
.
String
()
+
"/quic"
)
quicMA
,
err
:=
ma
.
NewMultiaddr
(
"/quic"
)
if
err
!=
nil
{
return
nil
,
err
}
return
quicMA
,
nil
return
udpMA
.
Encapsulate
(
quicMA
)
,
nil
}
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