mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
15 lines
655 B
Go
15 lines
655 B
Go
package option
|
|
|
|
type SSHOutboundOptions struct {
|
|
DialerOptions
|
|
ServerOptions
|
|
User string `json:"user,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
PrivateKey Listable[string] `json:"private_key,omitempty"`
|
|
PrivateKeyPath string `json:"private_key_path,omitempty"`
|
|
PrivateKeyPassphrase string `json:"private_key_passphrase,omitempty"`
|
|
HostKey Listable[string] `json:"host_key,omitempty"`
|
|
HostKeyAlgorithms Listable[string] `json:"host_key_algorithms,omitempty"`
|
|
ClientVersion string `json:"client_version,omitempty"`
|
|
}
|