reduce limit on peer connections

pull/53/head
Zlatin Balevsky 2020-09-19 17:16:36 +01:00
parent 9eff723dd3
commit a262c99efe
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ class MuWireSettings {
// ultrapeer connection settings // ultrapeer connection settings
leafConnections = Integer.valueOf(props.getProperty("leafConnections","512")) leafConnections = Integer.valueOf(props.getProperty("leafConnections","512"))
peerConnections = Integer.valueOf(props.getProperty("peerConnections","512")) peerConnections = Integer.valueOf(props.getProperty("peerConnections","128"))
speedSmoothSeconds = Integer.valueOf(props.getProperty("speedSmoothSeconds","10")) speedSmoothSeconds = Integer.valueOf(props.getProperty("speedSmoothSeconds","10"))
totalUploadSlots = Integer.valueOf(props.getProperty("totalUploadSlots","-1")) totalUploadSlots = Integer.valueOf(props.getProperty("totalUploadSlots","-1"))