This repository was archived by the owner on May 26, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-43
lines changed
Expand file tree Collapse file tree 4 files changed +6
-43
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,8 @@ require (
99 github.com/libp2p/go-netroute v0.1.5 // indirect
1010 github.com/libp2p/go-reuseport v0.0.2
1111 github.com/libp2p/go-reuseport-transport v0.0.4
12- github.com/mikioh /tcp v0.0.0-20190314235350-803a9b46060c
12+ github.com/marten-seemann /tcp v0.0.0-20210406111302-dfbc87cc63fd
1313 github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b
14- github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc // indirect
1514 github.com/multiformats/go-multiaddr v0.3.1
1615 github.com/multiformats/go-multiaddr-fmt v0.1.0
1716 github.com/multiformats/go-multihash v0.0.15 // indirect
Original file line number Diff line number Diff line change @@ -247,6 +247,8 @@ github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-b
247247github.com/lightstep/lightstep-tracer-go v0.18.1 /go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4 =
248248github.com/lyft/protoc-gen-validate v0.0.13 /go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ =
249249github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329 /go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc =
250+ github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd h1:br0buuQ854V8u83wA0rVZ8ttrq5CpaPZdvrK0LP2lOk =
251+ github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd /go.mod h1:QuCEs1Nt24+FYQEqAAncTDPJIuGs+LxK1MCiFL25pMU =
250252github.com/mattn/go-colorable v0.0.9 /go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU =
251253github.com/mattn/go-colorable v0.1.1 /go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ =
252254github.com/mattn/go-isatty v0.0.3 /go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4 =
@@ -497,6 +499,7 @@ golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLL
497499golang.org/x/net v0.0.0-20190620200207-3b0461eec859 /go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s =
498500golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 /go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s =
499501golang.org/x/net v0.0.0-20200625001655-4c5254603344 /go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA =
502+ golang.org/x/net v0.0.0-20210119194325-5f4716e94777 /go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg =
500503golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 h1:b0LrWgu8+q7z4J+0Y3Umo5q1dL7NXBkKBWkaVkAq17E =
501504golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 /go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc =
502505golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be /go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U =
Original file line number Diff line number Diff line change 55 "sync"
66 "time"
77
8- "github.com/mikioh /tcp"
8+ "github.com/marten-seemann /tcp"
99 "github.com/mikioh/tcpinfo"
1010 manet "github.com/multiformats/go-multiaddr/net"
1111 "github.com/prometheus/client_golang/prometheus"
@@ -130,7 +130,7 @@ type tracingConn struct {
130130}
131131
132132func newTracingConn (c manet.Conn , isClient bool ) (* tracingConn , error ) {
133- conn , err := newTCPConn (c )
133+ conn , err := tcp . NewConn (c )
134134 if err != nil {
135135 return nil , err
136136 }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments