Unit
ScUtils
type
TScSSHChannelPermission = (cpAllowLocalForwarding, cpAllowRemoteForwarding, cpAllowShell, cpAllowSFTP);
TScSSHChannelPermissions = set of TScSSHChannelPermission;
Description
The TScSSHChannelPermission enumeration represents permissions, which determine whether a new SSH channel is allowed to be opened for this SSH connection at the client's request.
Value | Meaning |
cpAllowLocalForwarding | Specifies that a user is allowed to open a channel for local port forwarding. |
cpAllowRemoteForwarding | Specifies that a user is allowed to open a channel for remote port forwarding. |
cpAllowShell | Specifies that a user is allowed to open a shell session to execute commands. |
cpAllowSFTP | Specifies that a user is allowed to open a SFTP session. |
See also