// github.com/taosdata/driver-go/[email protected]/common/ws.go
var DefaultDialer = websocket.Dialer{
Proxy: http.ProxyFromEnvironment,
HandshakeTimeout: 45 * time.Second,
ReadBufferSize: BufferSize4M,
WriteBufferSize: BufferSize4M,
WriteBufferPool: &sync.Pool{},
}
I want to modify the ReadBufferSize , can you provide the function to modify the ReadBufferSize ?