SSH connection options.
public enum SshOptions
Public Enum SshOptions
public enum class SshOptions
Name | Description |
---|
None | No options. |
DoNotSplitChannelPackets | Do not split channel data packets unless they are larger than maximum packet size. |
WaitForServerWelcomeMessage | Wait for server SSH protocol welcome message before sending the client one. |
TryPasswordFirst | When authenticating using both password and private key, try password authentication first (default is to try the private key first). |
PostponeChannelClose | Postpone channel close. |
EnableSignaturePadding | Enable signature padding. |
Top