| 79 | } |
| 80 | |
| 81 | type secureShell struct { |
| 82 | secureDialer SecureDialer |
| 83 | terminalHelper terminal.TerminalHelper |
| 84 | listenerFactory ListenerFactory |
| 85 | keepAliveInterval time.Duration |
| 86 | app models.Application |
| 87 | sshEndpointFingerprint string |
| 88 | sshEndpoint string |
| 89 | token string |
| 90 | secureClient SecureClient |
| 91 | opts *options.SSHOptions |
| 92 | |
| 93 | localListeners []net.Listener |
| 94 | } |
| 95 | |
| 96 | func NewSecureShell( |
| 97 | secureDialer SecureDialer, |
nothing calls this directly
no outgoing calls
no test coverage detected