class documentation
class SSHSession(channel.SSHChannel): (source)
Constructor: SSHSession(*args, **kw)
A generalized implementation of an SSH session.
See RFC 4254, section 6.
The precise implementation of the various operations that the remote end can send is left up to the avatar, usually via an adapter to an interface such as ISession
.
Method | __init__ |
Undocumented |
Method | closed |
Called when the channel is closed. This means that both our side and the remote side have closed the channel. |
Method | data |
Called when we receive data. |
Method | eof |
Called when the other side will send no more data. |
Method | ext |
Called when we receive extended data (usually standard error). |
Method | lose |
Close the channel if there is no buferred data. Otherwise, note the request and return. |
Method | request |
Process a request to pass an environment variable. |
Method | request |
Undocumented |
Method | request |
Undocumented |
Method | request |
Undocumented |
Method | request |
Undocumented |
Method | request |
Undocumented |
Instance Variable | buf |
a buffer for data received before making a connection to a client. |
Instance Variable | client |
a protocol for communication with a shell, an application program, or a subsystem (see RFC 4254, section 6.5). |
Instance Variable | name |
Undocumented |
Instance Variable | session |
an object providing concrete implementations of session operations. |
Inherited from SSHChannel
:
Method | __bytes__ |
Return a byte string representation of the channel |
Method | __str__ |
Undocumented |
Method | add |
Called when bytes are added to the remote window. By default it clears the data buffers. |
Method | channel |
Called when the channel is opened. specificData is any data that the other side sent us when opening the channel. |
Method | close |
Called when the other side has closed the channel. |
Method | get |
See: ITransport.getHost |
Method | get |
See: ITransport.getPeer |
Method | log |
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 | open |
Called when the open failed for some reason. reason.desc is a string descrption, reason.code the SSH error code. |
Method | request |
Called when a request is sent to this channel. By default it delegates to self.request_<requestType>. If this function returns true, the request succeeded, otherwise it failed. |
Method | start |
Called when the remote buffer has more room, as a hint to continue writing. |
Method | stop |
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 |
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 |
Part of the Transport interface. Write a list of strings to the channel. |
Instance Variable | are |
Undocumented |
Instance Variable | avatar |
an avatar for the logged-in user (if a server channel) |
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 |
Undocumented |
Instance Variable | id |
Undocumented |
Instance Variable | local |
True if we aren't accepting more data. |
Instance Variable | local |
the maximum size of packet we will accept in bytes. |
Instance Variable | local |
how many bytes are left in the local window. |
Instance Variable | local |
the maximum size of the local window in bytes. |
Instance Variable | remote |
True if the other side isn't accepting more data. |
Instance Variable | remote |
the maximum size of a packet the remote side will accept in bytes. |
Instance Variable | remote |
how many bytes are left in the remote window. |
Instance Variable | specific |
Undocumented |
Class Variable | _log |
Undocumented |
Called when the channel is closed. This means that both our side and the remote side have closed the channel.
Process a request to pass an environment variable.
Parameters | |
data:bytes | The environment variable name and value, each encoded as an SSH protocol string and concatenated. |
Returns | |
A true value if the request to pass this environment variable was accepted, otherwise a false value. |
overrides
twisted.conch.ssh.channel.SSHChannel.buf
a buffer for data received before making a connection to a client.