aboutsummaryrefslogtreecommitdiffstats
path: root/dex/nodetable.go
Commit message (Collapse)AuthorAgeFilesLines
* dex: remove node table (#330)Sonic2019-04-091-73/+0
| | | | | | * dex: remove node table Node table is not so useful, go back to rely on kademlia * p2p: fix direct dial still have resolve delay
* p2p, p2p/discover: more aggressive dial strategy for direct dial (#326)Sonic2019-04-091-1/+1
| | | | | * p2p/discover: bump failure counter only if no nodes were provided * p2p: more aggressive dial strategy for direct dial
* p2p, dex: rework connection management (#183)Sonic2019-04-091-1/+3
| | | | | | * p2p, dex: rework connection management * dex: refresh our node record periodically * dex: don't send new record event if no new record
* dex: replace NodeMeta with ENR (#132)Sonic2019-04-091-41/+30
|
* dex: fix conflict caused by rebaseWei-Ning Huang2019-04-091-2/+2
|
* dex: implement peerSetLoopSonic2019-04-091-0/+3
|
* dex: redesign p2p network topologySonic2019-04-091-0/+79
- Let p2p server support direct connection and group connection. - Introduce node meta table to maintain IP of all nodes in node set, in memory and let nodes in the network can sync this table. - Let peerSet able to manage direct connections to notary set and dkg set. The mechanism to refresh the network topology when configuration round change is not done yet.