diff --git a/src/comm/comm.go b/src/comm/comm.go index 42056402..0ec1d30c 100644 --- a/src/comm/comm.go +++ b/src/comm/comm.go @@ -25,7 +25,7 @@ func New(n net.Conn) *Comm { c.connection.SetDeadline(time.Now().Add(3 * time.Hour)) c.connection.SetWriteDeadline(time.Now().Add(3 * time.Hour)) c.writer = bufio.NewWriter(n) - c.connection = bufio.NewReader(n) + // c.connection = bufio.NewReader(n) return c }