Up deadline to reduce cpu load

This commit is contained in:
obscuren 2014-09-16 16:36:18 +02:00
parent fb528c47c0
commit 66e309c5c4

View File

@ -96,7 +96,7 @@ func ReadMessages(conn net.Conn) (msgs []*Msg, err error) {
for { for {
// Give buffering some time // Give buffering some time
conn.SetReadDeadline(time.Now().Add(5 * time.Millisecond)) conn.SetReadDeadline(time.Now().Add(100 * time.Millisecond))
// Create a new temporarily buffer // Create a new temporarily buffer
b := make([]byte, 1440) b := make([]byte, 1440)
n, _ := conn.Read(b) n, _ := conn.Read(b)