func NewWebSocketProxy()

in websocket_proxy.go [14:18]


func NewWebSocketProxy(stoppers int) *WebSocketProxy {
	return &WebSocketProxy{
		StopCh: make(chan error, stoppers+2), // each proxy() call is a stopper
	}
}