aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/simulations
Commit message (Collapse)AuthorAgeFilesLines
* swarm: network rewrite mergeethersphere2018-06-222-70/+33
|
* all: library changes for swarm-network-rewrite (#16898)Elad2018-06-1411-65/+481
| | | | | | | | | | | | This commit adds all changes needed for the merge of swarm-network-rewrite. The changes: - build: increase linter timeout - contracts/ens: export ensNode - log: add Output method and enable fractional seconds in format - metrics: relax test timeout - p2p: reduced some log levels, updates to simulation packages - rpc: increased maxClientSubscriptionBuffer to 20000
* p2p/simulations/adapters: fix websocket log line parsing in exec adapter ↵Ivan Daniluk2018-05-083-23/+75
| | | | (#16667)
* p2p: fix some golint warnings (#16577)kiel barry2018-05-083-207/+208
|
* p2p: changed if-else blocks to conform with golint (#16660)GagziW2018-05-031-2/+1
|
* all: update license information (#16089)Felix Lange2018-02-141-0/+1
|
* p2p/simulations: fix gosimple nit (#15661)Felix Lange2017-12-131-1/+1
|
* p2p/simulations: add mocker functionality (#15207)holisticode2017-12-135-2/+480
| | | | This commit adds mocker functionality to p2p/simulations. A mocker allows to starting/stopping of nodes via the HTTP API.
* all: use gometalinter.v2, fix new gosimple issues (#15650)Zach2017-12-131-4/+3
|
* p2p/simulations: various stability fixes (#15198)Lewis Marshall2017-12-015-12/+68
| | | | | | | | | | | | | | | | | | | | | | | | p2p/simulations: introduce dialBan - Refactor simulations/network connection getters to support avoiding simultaneous dials between two peers If two peers dial simultaneously, the connection will be dropped to help avoid that, we essentially lock the connection object with a timestamp which serves as a ban on dialing for a period of time (dialBanTimeout). - The connection getter InitConn can be wrapped and passed to the nodes via adapters.NodeConfig#Reachable field and then used by the respective services when they initiate connections. This massively stablise the emerging connectivity when running with hundreds of nodes bootstrapping a network. p2p: add Inbound public method to p2p.Peer p2p/simulations: Add server id to logs to support debugging in-memory network simulations when multiple peers are logging. p2p: SetupConn now returns error. The dialer checks the error and only calls resolve if the actual TCP dial fails.
* p2p: add network simulation framework (#14982)Lewis Marshall2017-09-2514-0/+4266
This commit introduces a network simulation framework which can be used to run simulated networks of devp2p nodes. The intention is to use this for testing protocols, performing benchmarks and visualising emergent network behaviour.