StartNodeVNCServer starts the embedded server for a node VNC shell connection.
(client *api.Client, nodeName string)
| 100 | |
| 101 | // StartNodeVNCServer starts the embedded server for a node VNC shell connection. |
| 102 | func (s *Server) StartNodeVNCServer(client *api.Client, nodeName string) (string, error) { |
| 103 | return s.StartNodeVNCServerWithSession(client, nodeName, nil) |
| 104 | } |
| 105 | |
| 106 | // StartNodeVNCServerWithSession starts the embedded server for a node VNC shell connection with session notifications. |
| 107 | func (s *Server) StartNodeVNCServerWithSession(client *api.Client, nodeName string, session SessionNotifier) (string, error) { |
nothing calls this directly
no test coverage detected