renzheng 7 年之前
父节点
当前提交
dda3769974
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      common/src/github.com/gorilla/websocket/conn.go

+ 1 - 0
common/src/github.com/gorilla/websocket/conn.go

@@ -263,6 +263,7 @@ type Conn struct {
 	readDecompress         bool // whether last read frame had RSV1 set
 	readDecompress         bool // whether last read frame had RSV1 set
 	newDecompressionReader func(io.Reader) io.ReadCloser
 	newDecompressionReader func(io.Reader) io.ReadCloser
 	Sess                   interface{}
 	Sess                   interface{}
+	Ch                     chan bool
 }
 }
 
 
 func newConn(conn net.Conn, isServer bool, readBufferSize, writeBufferSize int) *Conn {
 func newConn(conn net.Conn, isServer bool, readBufferSize, writeBufferSize int) *Conn {