We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to get the exact error code or error message from underlying guacd code. How do I get it ?
This is my code right now.
mux := http.NewServeMux() // prepare Websocket server wsSraServer := guac.NewWebsocketServer(cfg.wsDoConnect) mux.Handle("/test/ext/websocket-tunnel", wsSraServer) if cfg.httpTunnel == "enable" { // prepare HTTP server httpSraServlet := guac.NewServer(cfg.httpDoConnect) mux.Handle("/tunnel", httpSraServlet) mux.Handle("/test/ext/tunnel", httpSraServlet) } //wsSraServer.OnConnectWs = cfg.OnConnectWs // wsSraServer.OnDisconnectWs = cfg.OnDisconnectWs
The text was updated successfully, but these errors were encountered:
CC @jakecoffman
Sorry, something went wrong.
No branches or pull requests
I want to get the exact error code or error message from underlying guacd code. How do I get it ?
This is my code right now.
The text was updated successfully, but these errors were encountered: