class documentation

class SSHConnectForwardingChannel(channel.SSHChannel): (source)

Known subclasses: twisted.conch.scripts.conch.SSHConnectForwardingChannel

View In Hierarchy

Channel used for handling server side forwarding request. It acts as a client for the remote forwarding destination.
Method __init__ Undocumented
Method channel​Open See: channel.SSHChannel
Method closed See: channel.SSHChannel
Method data​Received See: channel.SSHChannel
Instance Variable client Protocol connected to the forwarding destination.
Instance Variable client​Buf Data received while forwarding channel is not yet connected.
Instance Variable hostport (host, port) requested by client as forwarding destination.
Method _close Called when failed to connect to the forwarding destination.
Method _set​Client Called when the connection was established to the forwarding destination.
Instance Variable _channel​Open​Deferred Deferred used in testing to check the result of channelOpen.
Variable _reactor Reactor used for TCP connections.

Inherited from SSHChannel:

Method __bytes__ Return a byte string representation of the channel
Method __str__ Undocumented
Method add​Window​Bytes Called when bytes are added to the remote window. By default it clears the data buffers.
Method close​Received Called when the other side has closed the channel.
Method eof​Received Called when the other side will send no more data.
Method ext​Received Called when we receive extended data (usually standard error).
Method get​Host See: ITransport.getHost
Method get​Peer See: ITransport.getPeer
Method log​Prefix 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 lose​Connection Close the channel if there is no buferred data. Otherwise, note the request and return.
Method open​Failed Called when the open failed for some reason. reason.desc is a string descrption, reason.code the SSH error code.
Method request​Received No summary
Method start​Writing Called when the remote buffer has more room, as a hint to continue writing.
Method stop​Writing Called when the remote buffer is full, as a hint to stop writing. This can be ignored, but it can be helpful.
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 write​Extended 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 write​Sequence Part of the Transport interface. Write a list of strings to the channel.
Instance Variable are​Writing Undocumented
Instance Variable avatar an avatar for the logged-in user (if a server channel)
Instance Variable buf Undocumented
Instance Variable closing Undocumented
Instance Variable conn the connection this channel is multiplexed through.
Instance Variable data any data to send to the other side when the channel is requested.
Instance Variable ext​Buf Undocumented
Instance Variable id Undocumented
Instance Variable local​Closed True if we aren't accepting more data.
Instance Variable local​Max​Packet the maximum size of packet we will accept in bytes.
Instance Variable local​Window​Left how many bytes are left in the local window.
Instance Variable local​Window​Size the maximum size of the local window in bytes.
Instance Variable name the name of the channel.
Instance Variable remote​Closed True if the other side isn't accepting more data.
Instance Variable remote​Max​Packet the maximum size of a packet the remote side will accept in bytes.
Instance Variable remote​Window​Left how many bytes are left in the remote window.
Instance Variable specific​Data Undocumented
Class Variable _log Undocumented
def __init__(self, hostport, *args, **kw): (source)
def channelOpen(self, specificData): (source)
Protocol connected to the forwarding destination.
clientBuf: bytes = (source)
Data received while forwarding channel is not yet connected.
hostport: tuple or a sequence = (source)
(host, port) requested by client as forwarding destination.
def _close(self, reason): (source)
Called when failed to connect to the forwarding destination.
Parameters
reason:twisted.python.failure.FailureReason why connection failed.
def _setClient(self, client): (source)
Called when the connection was established to the forwarding destination.
Parameters
client:protocol.ProtocolClient protocol connected to the forwarding destination.
Deferred used in testing to check the result of channelOpen.
_reactor: A reactor. = (source)
Reactor used for TCP connections.