server-go/socket/conn-read.go

19 lines
399 B
Go
Raw Normal View History

2018-08-22 08:37:12 +00:00
// Copyright 2016 The Gorilla WebSocket Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build go1.5
package socket
import "io"
func (c *SocketConn) read(n int) ([]byte, error) {
p, err := c.BuffReader.Peek(n)
if err == io.EOF {
err = errUnexpectedEOF
}
c.BuffReader.Discard(len(p))
return p, err
}