-
-
Notifications
You must be signed in to change notification settings - Fork 4
SSH.Channel.Open
Andrew Lambert edited this page Nov 26, 2022
·
5 revisions
Shared Function Open(Session As SSH.Session, Type As String, WindowSize As UInt32, PacketSize As UInt32, Message As String) As SSH.Channel
Name | Type | Comment |
---|---|---|
Session |
Session | An active SSH session to use. |
Type |
String | The request type. |
WindowSize |
UInt32 | The maximum amount of unacknowledged data remote host is allowed to send before receiving an SSH_MSG_CHANNEL_WINDOW_ADJUST packet. |
PacketSize |
UInt32 | The maximum number of bytes remote host is allowed to send in a single packet. |
Message |
String | Additional data as required by the selected channel Type. |
Returns an instance of Channel
, or Nil
on error. Check Session.GetLastError (not Session.LastError
) for error details.
Creates a new channel over the session.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2018-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.