aboutsummaryrefslogtreecommitdiffstats
path: root/ethwire/messaging.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-04 06:12:21 +0800
committerobscuren <geffobscura@gmail.com>2014-07-04 06:12:21 +0800
commitcb7ebdf821adb4b022adcaea0973c8c7da2e2923 (patch)
tree884cc6073bdc20df5503c415760eaf3a87f96060 /ethwire/messaging.go
parent8baa0f84e70aafa3882ec477d3b3d401d462958b (diff)
downloaddexon-cb7ebdf821adb4b022adcaea0973c8c7da2e2923.tar
dexon-cb7ebdf821adb4b022adcaea0973c8c7da2e2923.tar.gz
dexon-cb7ebdf821adb4b022adcaea0973c8c7da2e2923.tar.bz2
dexon-cb7ebdf821adb4b022adcaea0973c8c7da2e2923.tar.lz
dexon-cb7ebdf821adb4b022adcaea0973c8c7da2e2923.tar.xz
dexon-cb7ebdf821adb4b022adcaea0973c8c7da2e2923.tar.zst
dexon-cb7ebdf821adb4b022adcaea0973c8c7da2e2923.zip
Decreased timeout
Diffstat (limited to 'ethwire/messaging.go')
-rw-r--r--ethwire/messaging.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethwire/messaging.go b/ethwire/messaging.go
index f13b72353..5319d0711 100644
--- a/ethwire/messaging.go
+++ b/ethwire/messaging.go
@@ -279,7 +279,7 @@ func ReadMessages(conn net.Conn) (msgs []*Msg, err error) {
var totalBytes int
for {
// Give buffering some time
- conn.SetReadDeadline(time.Now().Add(500 * time.Millisecond))
+ conn.SetReadDeadline(time.Now().Add(50 * time.Millisecond))
// Create a new temporarily buffer
b := make([]byte, 1440)
// Wait for a message from this peer