Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #37 from notassigned/add-quic-transport
Browse files Browse the repository at this point in the history
Add quic transport and ipv6
  • Loading branch information
alecbcs authored Sep 22, 2021
2 parents bef656a + b543729 commit c81dcf2
Show file tree
Hide file tree
Showing 4 changed files with 334 additions and 4 deletions.
1 change: 1 addition & 0 deletions cli/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ func UpRun(r *cmd.Root, c *cmd.Sub) {
if ln != nil {
ln.Close()
}

// Create P2P Node
host, dht, err := p2p.CreateNode(ctx,
Global.Interface.PrivateKey,
Expand Down
8 changes: 5 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ require (
github.com/ipfs/go-datastore v0.4.5
github.com/kr/text v0.2.0 // indirect
github.com/libp2p/go-libp2p v0.14.1
github.com/libp2p/go-libp2p-core v0.8.5
github.com/libp2p/go-libp2p-core v0.8.6
github.com/libp2p/go-libp2p-discovery v0.5.0
github.com/libp2p/go-libp2p-kad-dht v0.12.1
github.com/multiformats/go-multiaddr v0.3.1
github.com/libp2p/go-libp2p-quic-transport v0.12.0 // indirect
github.com/libp2p/go-tcp-transport v0.2.8 // indirect
github.com/multiformats/go-multiaddr v0.3.3
github.com/sethvargo/go-diceware v0.2.1
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
github.com/tcnksm/go-latest v0.0.0-20170313132115-e3007ae9052e
golang.org/x/net v0.0.0-20210423184538-5f58ad60dda6
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781
golang.org/x/sys v0.0.0-20210603125802-9665404d3644 // indirect
gopkg.in/yaml.v2 v2.4.0
honnef.co/go/tools v0.0.1-2020.1.4 // indirect
Expand Down
Loading

0 comments on commit c81dcf2

Please sign in to comment.