SSHTransport implements Transport over SSH connections.
| 17 | |
| 18 | // SSHTransport implements Transport over SSH connections. |
| 19 | type SSHTransport struct { |
| 20 | client *ssh.Client |
| 21 | config *ssh.ClientConfig |
| 22 | host string |
| 23 | port string |
| 24 | agentVersion semver.Version |
| 25 | timeout time.Duration |
| 26 | } |
| 27 | |
| 28 | // SSHTransportConfig holds configuration for creating an SSH transport. |
| 29 | type SSHTransportConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected