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
dms3
go-dms3
Commits
fbff466b
Unverified
Commit
fbff466b
authored
Jan 13, 2021
by
Adin Schmahmann
Committed by
GitHub
Jan 13, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7832 from marten-seemann/update-libp2p
update go-libp2p to v0.13.0
parents
2ed92544
fcdf77c9
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
254 deletions
+38
-254
go.mod
go.mod
+9
-8
go.sum
go.sum
+28
-245
peering/peering_test.go
peering/peering_test.go
+1
-1
No files found.
go.mod
View file @
fbff466b
...
...
@@ -57,35 +57,36 @@ require (
github.com/ipfs/go-verifcid
v0.0.1
github.com/ipfs/interface-go-ipfs-core
v0.4.0
github.com/ipld/go-car
v0.1.1-0.20201015032735-ff6ccdc46acc
github.com/jbenet/go-fuse-version
v0.0.0-20160322195114-6d4c97bcf253 // indirect
github.com/jbenet/go-is-domain
v1.0.5
github.com/jbenet/go-random
v0.0.0-20190219211222-123a90aedc0c
github.com/jbenet/go-temp-err-catcher
v0.1.0
github.com/jbenet/goprocess
v0.1.4
github.com/libp2p/go-libp2p
v0.1
2
.0
github.com/libp2p/go-libp2p
v0.1
3
.0
github.com/libp2p/go-libp2p-circuit
v0.4.0
github.com/libp2p/go-libp2p-connmgr
v0.2.4
github.com/libp2p/go-libp2p-core
v0.
7
.0
github.com/libp2p/go-libp2p-core
v0.
8
.0
github.com/libp2p/go-libp2p-discovery
v0.5.0
github.com/libp2p/go-libp2p-http
v0.2.0
github.com/libp2p/go-libp2p-kad-dht
v0.11.1
github.com/libp2p/go-libp2p-kbucket
v0.4.7
github.com/libp2p/go-libp2p-loggables
v0.1.0
github.com/libp2p/go-libp2p-mplex
v0.
3.0
github.com/libp2p/go-libp2p-mplex
v0.
4.1
github.com/libp2p/go-libp2p-noise
v0.1.2
github.com/libp2p/go-libp2p-peerstore
v0.2.6
github.com/libp2p/go-libp2p-pubsub
v0.4.0
github.com/libp2p/go-libp2p-pubsub-router
v0.4.0
github.com/libp2p/go-libp2p-quic-transport
v0.
9.3
github.com/libp2p/go-libp2p-quic-transport
v0.
10.0
github.com/libp2p/go-libp2p-record
v0.1.3
github.com/libp2p/go-libp2p-routing-helpers
v0.2.3
github.com/libp2p/go-libp2p-secio
v0.2.2
github.com/libp2p/go-libp2p-swarm
v0.
3.1
github.com/libp2p/go-libp2p-testing
v0.
3
.0
github.com/libp2p/go-libp2p-swarm
v0.
4.0
github.com/libp2p/go-libp2p-testing
v0.
4
.0
github.com/libp2p/go-libp2p-tls
v0.1.3
github.com/libp2p/go-libp2p-yamux
v0.
4.0
github.com/libp2p/go-libp2p-yamux
v0.
5.1
github.com/libp2p/go-socket-activation
v0.0.2
github.com/libp2p/go-tcp-transport
v0.2.1
github.com/libp2p/go-ws-transport
v0.
3.1
github.com/libp2p/go-ws-transport
v0.
4.0
github.com/lucas-clemente/quic-go
v0.19.3
github.com/mattn/go-runewidth
v0.0.9 // indirect
github.com/mitchellh/go-homedir
v1.1.0
...
...
go.sum
View file @
fbff466b
This diff is collapsed.
Click to expand it.
peering/peering_test.go
View file @
fbff466b
...
...
@@ -90,7 +90,7 @@ func TestPeeringService(t *testing.T) {
// All conns to peer should eventually close.
for
_
,
c
:=
range
conns
{
require
.
Eventually
(
t
,
func
()
bool
{
s
,
err
:=
c
.
NewStream
()
s
,
err
:=
c
.
NewStream
(
context
.
Background
()
)
if
s
!=
nil
{
_
=
s
.
Reset
()
}
...
...
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