Skip to content

Commit

Permalink
Merge pull request #460 from subutai-io/dht-reconnect-at-start
Browse files Browse the repository at this point in the history
Dht reconnect at start
  • Loading branch information
crioto authored Nov 23, 2017
2 parents 5e0d528 + b8cd011 commit df27f7a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

* Draft next version

## [6.2.3] 11/23/2017

* Forced usage of master dht

## [6.2.2] 11/20/2017

* Fixed connectivity issues
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.3.0-dev
6.2.3
2 changes: 2 additions & 0 deletions lib/p2p.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ func (p *PeerToPeer) FindNetworkAddresses() {

// StartP2PInstance is an entry point of a P2P library.
func StartP2PInstance(argIP, argMac, argDev, argDirect, argHash, argDht, argKeyfile, argKey, argTTL, argLog string, fwd bool, port int, ignoreIPs []string) *PeerToPeer {
// Master mode
argDht = "mdht.subut.ai:6881"
p := new(PeerToPeer)
p.Init()
p.Interface.Mac = p.validateMac(argMac)
Expand Down

0 comments on commit df27f7a

Please sign in to comment.