Reduce ping time & timeout (ref #358)

This commit is contained in:
Jakob Borg 2014-06-14 11:07:34 +02:00
parent 48a3fac2da
commit 537c6b3b69
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ type asyncResult struct {
}
const (
pingTimeout = 300 * time.Second
pingIdleTime = 600 * time.Second
pingTimeout = 30 * time.Second
pingIdleTime = 60 * time.Second
)
func NewConnection(nodeID string, reader io.Reader, writer io.Writer, receiver Model) Connection {