This commit is contained in:
laodaming 2023-07-27 19:30:40 +08:00
parent 687c18641f
commit 18bbc6788f

View File

@ -44,14 +44,17 @@ var (
}
//升级websocket
upgrade = websocket.Upgrader{
ReadBufferSize: 1024 * 10, //最大可读取大小 10M
//最大可读取大小 10M
ReadBufferSize: 1024 * 10,
//握手超时时间15s
HandshakeTimeout: time.Second * 15,
//允许跨域
CheckOrigin: func(r *http.Request) bool {
return true
},
WriteBufferPool: &buffPool,
//写的缓存池
WriteBufferPool: &buffPool,
//是否支持压缩
EnableCompression: true,
}
//websocket连接存储