p2p: reduce the concurrent handshakes to 10/10 in/out

This commit is contained in:
Péter Szilágyi 2015-04-30 17:39:08 +03:00
parent 2060bc8bac
commit af93217775
1 changed files with 2 additions and 2 deletions

View File

@ -25,10 +25,10 @@ const (
// This is the maximum number of inbound connection
// that are allowed to linger between 'accepted' and
// 'added as peer'.
maxAcceptConns = 50
maxAcceptConns = 10
// Maximum number of concurrently dialing outbound connections.
maxDialingConns = 50
maxDialingConns = 10
// total timeout for encryption handshake and protocol
// handshake in both directions.