Class t.c.s.c.SSHConnection(connection.SSHConnection):

Part of twisted.conch.scripts.conch View Source View In Hierarchy

No class docstring
Method serviceStarted called when the service is active on the transport.
Method serviceStopped called when the service is stopped, either by the connection ending
Method requestRemoteForwarding Undocumented
Method _cbRemoteForwarding Undocumented
Method _ebRemoteForwarding Undocumented
Method cancelRemoteForwarding Undocumented
Method channel_forwarded_tcpip Undocumented
Method channelClosed Called when a channel is closed.

Inherited from SSHConnection:

Method __init__ Undocumented
Method ssh_GLOBAL_REQUEST Undocumented
Method ssh_REQUEST_SUCCESS Undocumented
Method ssh_REQUEST_FAILURE Undocumented
Method ssh_CHANNEL_OPEN Undocumented
Method ssh_CHANNEL_OPEN_CONFIRMATION Undocumented
Method ssh_CHANNEL_OPEN_FAILURE Undocumented
Method ssh_CHANNEL_WINDOW_ADJUST Undocumented
Method ssh_CHANNEL_DATA Undocumented
Method ssh_CHANNEL_EXTENDED_DATA Undocumented
Method ssh_CHANNEL_EOF Undocumented
Method ssh_CHANNEL_CLOSE Undocumented
Method ssh_CHANNEL_REQUEST Undocumented
Method _cbChannelRequest Undocumented
Method _ebChannelRequest Undocumented
Method ssh_CHANNEL_SUCCESS Undocumented
Method ssh_CHANNEL_FAILURE Undocumented
Method sendGlobalRequest Send a global request for this connection. Current this is only used
Method openChannel Open a new channel on this connection.
Method sendRequest Send a request to a channel.
Method adjustWindow Tell the other side that we will receive more data. This should not
Method sendData Send data to a channel. This should not normally be used: instead use
Method sendExtendedData Send extended data to a channel. This should not normally be used:
Method sendEOF Send an EOF (End of File) for a channel.
Method sendClose Close a channel.
Method getChannel The other side requested a channel of some sort.
Method gotGlobalRequest We got a global request. pretty much, this is just used by the client

Inherited from SSHService (via SSHConnection):

Method logPrefix Override this method to insert custom logging behavior. Its
Method packetReceived called when we receieve a packet on the transport
def serviceStarted(self): (source)
called when the service is active on the transport.
def serviceStopped(self): (source)
called when the service is stopped, either by the connection ending or by another service being started
def requestRemoteForwarding(self, remotePort, hostport): (source)
Undocumented
def _cbRemoteForwarding(self, result, remotePort, hostport): (source)
Undocumented
def _ebRemoteForwarding(self, f, remotePort, hostport): (source)
Undocumented
def cancelRemoteForwarding(self, remotePort): (source)
Undocumented
def channel_forwarded_tcpip(self, windowSize, maxPacket, data): (source)
Undocumented
def channelClosed(self, channel): (source)
Called when a channel is closed. It clears the local state related to the channel, and calls channel.closed(). MAKE SURE YOU CALL THIS METHOD, even if you subclass SSHConnection. If you don't, things will break mysteriously.
API Documentation for twisted, generated by pydoctor.