Back to product page
- Introduction
- Overview
- License agreement
- Getting Started
- Objects
- Enumerations
- wodSSHD
- Methods
- Properties
- Events
- Connecting
- CryptoInformation
- Disconnected
- LoginGSSAPI
- LoginPassword
- LoginPubkey
- PortBindRequest
- PortForwardConnect
- PortForwardDisconnect
- PortForwardRequest
- Received
- ServiceRequest
- ServiceStart
- SftpDeleteFile
- SftpDownloadFile
- SftpFileTransferData
- SftpListDir
- SftpListDirData
- SftpMakeDir
- SftpProgress
- SftpRemoveDir
- SftpRename
- SftpTransferComplete
- SftpUploadFile
- StateChanged
- IwodSSHDNotify
- Methods
- Connecting
- CryptoInformation
- Disconnected
- LoginGSSAPI
- LoginPassword
- LoginPubkey
- PortBindRequest
- PortForwardConnect
- PortForwardDisconnect
- PortForwardRequest
- Received
- ServiceRequest
- ServiceStart
- SftpDeleteFile
- SftpDownloadFile
- SftpFileTransferData
- SftpListDir
- SftpListDirData
- SftpMakeDir
- SftpProgress
- SftpRemoveDir
- SftpRename
- SftpTransferComplete
- SftpUploadFile
- StateChanged
- Methods
- SSHKeyPair
- SSHUser
- SSHUsers
- How to get support
- Technical information
- Fast notifications
- Error list
SSHServiceTypes Enumerations
List that defines all possible services that the client can request from your system.
Remarks
Once client makes the request, ServiceRequest event will be fired, at which point you can deny the service if you want, or change it (reasonably) to something else.For example, if some guest user tries to execute command prompt (stShell value), you can change it to execute some external program (stExecute) or even manually write the custom message and close the connection.
Obviously, if user requests SFTP subsystem, changing it to something else (like stShell) doesn't make sense, because the client program on the other side is probably only SFTP capable, so you should close the connection if you don't want to approve it.
Members
Constant | Value | Description |
---|---|---|
stNone | 0 | No service. |
stShell | 1 | Command prompt. |
stExecute | 2 | Execute program. |
stSubsystem | 3 | External subsystem. |
stPortForwarding | 4 | Port forwarding. |
stSCP | 5 | Secure file copy. |