utils/conn: wsarecv error in windows means connection closed?

This commit is contained in:
fatedier 2016-08-01 15:24:04 +08:00
parent 7f386fc042
commit 3b06d771ac
1 changed files with 2 additions and 2 deletions

View File

@ -143,8 +143,8 @@ func (c *Conn) Read(p []byte) (n int, err error) {
func (c *Conn) ReadLine() (buff string, err error) {
buff, err = c.Reader.ReadString('\n')
if err != nil {
// wsarecv error in windows means connection closed
if err == io.EOF || strings.Contains(err.Error(), "wsarecv: An existing connection was forcibly closed") {
// wsarecv error in windows means connection closed?
if err == io.EOF || strings.Contains(err.Error(), "wsarecv") {
c.mutex.Lock()
c.closeFlag = true
c.mutex.Unlock()