Part of twisted.conch.scripts.conch View Source View In Hierarchy
Inherited from SSHConnectForwardingChannel:
Method | __init__ | Undocumented |
Method | channelOpen | Called when the channel is opened. specificData is any data that the other side sent us when opening the channel. |
Method | dataReceived | Called when we receive data. |
Method | closed | Called when the channel is closed. This means that both our side and the remote side have closed the channel. |
Method | _setClient | Undocumented |
Method | _close | Undocumented |
Inherited from SSHChannel (via SSHConnectForwardingChannel):
Method | __str__ | Undocumented |
Method | logPrefix | Override this method to insert custom logging behavior. Its return value will be inserted in front of every line. It may be called more times than the number of output lines. |
Method | openFailed | Called when the the open failed for some reason. reason.desc is a string descrption, reason.code the the SSH error code. |
Method | addWindowBytes | Called when bytes are added to the remote window. By default it clears the data buffers. |
Method | requestReceived | No summary |
Method | extReceived | Called when we receive extended data (usually standard error). |
Method | eofReceived | Called when the other side will send no more data. |
Method | closeReceived | Called when the other side has closed the channel. |
Method | write | Write some data to the channel. If there is not enough remote window available, buffer until it is. Otherwise, split the data into packets of length remoteMaxPacket and send them. |
Method | writeExtended | Send extended data to this channel. If there is not enough remote window available, buffer until there is. Otherwise, split the data into packets of length remoteMaxPacket and send them. |
Method | writeSequence | Part of the Transport interface. Write a list of strings to the channel. |
Method | loseConnection | Close the channel if there is no buferred data. Otherwise, note the request and return. |
Method | getPeer | Return a tuple describing the other side of the connection. |
Method | getHost | Return a tuple describing our side of the connection. |
Method | stopWriting | Called when the remote buffer is full, as a hint to stop writing. This can be ignored, but it can be helpful. |
Method | startWriting | Called when the remote buffer has more room, as a hint to continue writing. |