9 - fixing bulk push/pop

This commit is contained in:
benjamin.slabbert 2019-11-16 11:32:04 +02:00
parent 43d274259e
commit 8073daa173
3 changed files with 97 additions and 56 deletions

View file

@ -13,10 +13,10 @@ import (
)
type connection struct {
reader *bufio.Reader
conn net.Conn
reader *bufio.Reader
conn net.Conn
cmdMaxBytes int
closed bool
closed bool
}
func newConnection(d *driver) (*connection, error) {