| 46 | } |
| 47 | |
| 48 | type forwardedOperationWebSocket struct { |
| 49 | req *http.Request |
| 50 | id string |
| 51 | source *websocket.Conn // Connection to the node were the operation is running |
| 52 | } |
| 53 | |
| 54 | // ForwardedOperationWebSocket returns a new forwarted websocket operation. |
| 55 | func ForwardedOperationWebSocket(req *http.Request, id string, source *websocket.Conn) response.Response { |
nothing calls this directly
no outgoing calls
no test coverage detected