ProxyConfig represents proxy settings
| 58 | |
| 59 | // ProxyConfig represents proxy settings |
| 60 | type ProxyConfig struct { |
| 61 | Type ProxyType |
| 62 | Host string |
| 63 | Port string |
| 64 | Username string // For jump hosts |
| 65 | } |
| 66 | |
| 67 | // ValidateHostConfig validates a host configuration |
| 68 | func ValidateHostConfig(cfg *HostConfig) error { |
nothing calls this directly
no outgoing calls
no test coverage detected