mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 22:04:41 -05:00
15 lines
654 B
Go
15 lines
654 B
Go
package model
|
|
|
|
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"`
|
|
}
|