go-vncproxy
go-vncproxy copied to clipboard
A tiny vnc websocket proxy written by golang supports noVNC client
This PR introduces a WebSocket adapter interface to decouple go-vncproxy from any specific WebSocket library, enabling support for multiple WebSocket implementations while maintaining full backward compatibility. ## Problem Previously, go-vncproxy...
To improve compatibility with different WebSocket libraries, introduce an abstraction layer via a WebSocket adapter interface. Provide a default implementation using golang.org/x/net/websocket and allow custom adapters for libraries such as...
I'm using `coder/websocket` instead of `x/net`, is there any plans on supporting other WS libraries, like the one told earlier or `gorilla/websocket` / `gin`?