mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 00:12:21 +08:00
17 lines
792 B
Go
17 lines
792 B
Go
package option
|
|
|
|
import "github.com/sagernet/sing/common/json/badoption"
|
|
|
|
type SSHOutboundOptions struct {
|
|
DialerOptions
|
|
ServerOptions
|
|
User string `json:"user,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
PrivateKey badoption.Listable[string] `json:"private_key,omitempty"`
|
|
PrivateKeyPath string `json:"private_key_path,omitempty"`
|
|
PrivateKeyPassphrase string `json:"private_key_passphrase,omitempty"`
|
|
HostKey badoption.Listable[string] `json:"host_key,omitempty"`
|
|
HostKeyAlgorithms badoption.Listable[string] `json:"host_key_algorithms,omitempty"`
|
|
ClientVersion string `json:"client_version,omitempty"`
|
|
}
|