ClientSftpChannelOpenStep Enumeration

[C/C++]

enum FlowSshC_ClientSftpChannelOpenStep
{
  FlowSshC_ClientSftpChannelOpenStep_OpenRequest = 100,
  FlowSshC_ClientSftpChannelOpenStep_SftpRequest = 200,
  FlowSshC_ClientSftpChannelOpenStep_InitPacket  = 300
};

[C#]

public enum ClientSftpChannelOpenStep
{
  OpenRequest = 100,
  SftpRequest = 200,
  InitPacket  = 300
}

Members

  • OpenRequest: At this step a channel is opened.
  • SftpRequest: At this step the SFTP subsystem is requested.
  • InitPacket: At this step the SFTP protocol is initialized.

Remarks

To open a SFTP channel, internally several steps are performed. ClientSftpChannelOpenStep constants define these intermediate steps; they are reported in a progress handler associated with the [ClientSftpChannel]Open request.