Config represents an SSH config file.
| 331 | |
| 332 | // Config represents an SSH config file. |
| 333 | type Config struct { |
| 334 | // A list of hosts to match against. The file begins with an implicit |
| 335 | // "Host *" declaration matching all hosts. |
| 336 | Hosts []*Host |
| 337 | depth uint8 |
| 338 | position Position |
| 339 | } |
| 340 | |
| 341 | // Get finds the first value in the configuration that matches the alias and |
| 342 | // contains key. Get returns the empty string if no value was found, or if the |
nothing calls this directly
no outgoing calls
no test coverage detected