tendermint/docs/spec/reactors
Anton Kaliaev 6fad8eaf5a [p2p/pex] connect to more than 10 peers (#2169)
* [p2p/pex] connect to more than 10 peers

also, remove DefaultMinNumOutboundPeers because a) I am not sure it's
needed b) it's super confusing

look closely

```
maxPeers := sw.config.MaxNumPeers - DefaultMinNumOutboundPeers
if maxPeers <= sw.peers.Size() {
  sw.Logger.Info("Ignoring inbound connection: already have enough peers", "address", inConn.RemoteAddr().String(), "numPeers", sw.peers.Size(), "max", maxPeers)
```

we print maxPeers = config.MaxPeers - DefaultMinNumOutboundPeers. So we
may not have enough peers even though we say we have enough.

Refs #2130

* update spec

* replace MaxNumPeers with MaxNumInboundPeers/MaxNumOutboundPeers

Refs #2130

* update changelog

* make max rpc conns formula visible to users

* update spec

* docs: note max outbound peers excludes persistent
2018-08-14 18:25:56 -04:00
..
block_sync Add spec for Blockchain Reactor algorithm 2018-06-13 14:05:17 +02:00
consensus move reactor descriptions to relevant specs 2018-05-30 16:51:19 +04:00
evidence move reactor descriptions to relevant specs 2018-05-30 16:51:19 +04:00
mempool docs: fix links & other imrpvoements 2018-08-07 19:47:51 -04:00
pex [p2p/pex] connect to more than 10 peers (#2169) 2018-08-14 18:25:56 -04:00