class documentation
class SSHConnection(connection.SSHConnection): (source)
Undocumented
Method | cancel |
Undocumented |
Method | channel |
Undocumented |
Method | channel |
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. |
Method | request |
Undocumented |
Method | service |
called when the service is active on the transport. |
Method | service |
Called when the connection is stopped. |
Instance Variable | local |
Undocumented |
Instance Variable | remote |
Undocumented |
Method | _cb |
Undocumented |
Method | _eb |
Undocumented |
Inherited from SSHConnection
:
Method | __init__ |
Undocumented |
Method | adjust |
Tell the other side that we will receive more data. This should not normally need to be called as it is managed automatically. |
Method | get |
The other side requested a channel of some sort. channelType is the type of channel being requested, windowSize is the initial size of the remote window, maxPacket is the largest packet we should send, data is any other packet data (often nothing). |
Method | got |
We got a global request. pretty much, this is just used by the client to request that we forward a port from the server to the client. Returns either: |
Method | open |
Open a new channel on this connection. |
Method | send |
Close a channel. |
Method | send |
Send data to a channel. This should not normally be used: instead use channel.write(data) as it manages the window automatically. |
Method | send |
Send an EOF (End of File) for a channel. |
Method | send |
Send extended data to a channel. This should not normally be used: instead use channel.writeExtendedData(data, dataType) as it manages the window automatically. |
Method | send |
Send a global request for this connection. Current this is only used for remote->local TCP forwarding. |
Method | send |
Send a request to a channel. |
Method | ssh_ |
The other side is closing its end; it does not want to receive any more data. Payload: |
Method | ssh_ |
The other side is sending us data. Payload: |
Method | ssh_ |
The other side is not sending any more data. Payload: |
Method | ssh_ |
The other side is sending us exteneded data. Payload: |
Method | ssh_ |
Our channel request to the other side failed. Payload: |
Method | ssh_ |
The other side wants to get a channel. Payload: |
Method | ssh_ |
The other side accepted our MSG_CHANNEL_OPEN request. Payload: |
Method | ssh_ |
The other side did not accept our MSG_CHANNEL_OPEN request. Payload: |
Method | ssh_ |
The other side is sending a request to a channel. Payload: |
Method | ssh_ |
Our channel request to the other side succeeded. Payload: |
Method | ssh_ |
The other side is adding bytes to its window. Payload: |
Method | ssh_ |
The other side has made a global request. Payload: |
Method | ssh_ |
Our global request failed. Get the appropriate Deferred and errback it with the packet we received. |
Method | ssh_ |
Our global request succeeded. Get the appropriate Deferred and call it back with the packet we received. |
Class Variable | name |
Undocumented |
Instance Variable | channels |
a dict mapping a local channel ID to SSHChannel subclasses. |
Instance Variable | channels |
a dict mapping a SSHChannel subclass to remote channel ID. |
Instance Variable | deferreds |
a dict mapping a local channel ID to a list of Deferreds for outstanding channel requests. Also, the 'global' key stores the list of pending global request Deferreds. |
Instance Variable | local |
the next number to use as a local channel ID. |
Instance Variable | local |
a dict mapping a local channel ID to a remote channel ID. |
Instance Variable | transport |
Undocumented |
Method | _cb |
Called back if the other side wanted a reply to a channel request. If the result is true, send a MSG_CHANNEL_SUCCESS. Otherwise, raise a error.ConchError |
Method | _cleanup |
All pending requests that have returned a deferred must be errbacked when this service is stopped, otherwise they might be left uncalled and uncallable. |
Method | _eb |
Called if the other wisde wanted a reply to the channel requeset and the channel request failed. |
Class Variable | _log |
Undocumented |
Inherited from SSHService
(via SSHConnection
):
Method | log |
Undocumented |
Method | packet |
called when we receive a packet on the transport |
Class Variable | protocol |
Undocumented |
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.
Parameters | |
channel:SSHChannel | Undocumented |