StartVMVNCServer starts the embedded server for a VM VNC connection.
(client *api.Client, vm *api.VM)
| 55 | |
| 56 | // StartVMVNCServer starts the embedded server for a VM VNC connection. |
| 57 | func (s *Server) StartVMVNCServer(client *api.Client, vm *api.VM) (string, error) { |
| 58 | return s.StartVMVNCServerWithSession(client, vm, nil) |
| 59 | } |
| 60 | |
| 61 | // StartVMVNCServerWithSession starts the embedded server for a VM VNC connection with session notifications. |
| 62 | func (s *Server) StartVMVNCServerWithSession(client *api.Client, vm *api.VM, session SessionNotifier) (string, error) { |
nothing calls this directly
no test coverage detected