Class t.c.s.s.SSHSession(channel.SSHChannel):

Part of twisted.conch.ssh.session View Source View In Hierarchy

No class docstring
Method __init__ Undocumented
Method request_subsystem Undocumented
Method request_shell Undocumented
Method request_exec Undocumented
Method request_pty_req Undocumented
Method request_window_change Undocumented
Method dataReceived Called when we receive data.
Method extReceived Called when we receive extended data (usually standard error).
Method eofReceived Called when the other side will send no more data.
Method closed Called when the channel is closed. This means that both our side and
Method loseConnection Close the channel.

Inherited from SSHChannel:

Method __str__ Undocumented
Method logPrefix Override this method to insert custom logging behavior. Its
Method channelOpen Called when the channel is opened. specificData is any data that the
Method openFailed Called when the the open failed for some reason.
Method addWindowBytes Called when bytes are added to the remote window. By default it clears
Method requestReceived Called when a request is sent to this channel. By default it delegates
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
Method writeExtended Send extended data to this channel. If there is not enough remote
Method writeSequence Part of the Transport interface. Write a list of strings to the
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.
Method startWriting Called when the remote buffer has more room, as a hint to continue
def __init__(self, *args, **kw): (source)
Undocumented
def request_subsystem(self, data): (source)
Undocumented
def request_shell(self, data): (source)
Undocumented
def request_exec(self, data): (source)
Undocumented
def request_pty_req(self, data): (source)
Undocumented
def request_window_change(self, data): (source)
Undocumented
def dataReceived(self, data): (source)
Called when we receive data.
Parametersdata(type: str )
def extReceived(self, dataType, data): (source)
Called when we receive extended data (usually standard error).
ParametersdataType(type: int )
data(type: str )
def eofReceived(self): (source)
Called when the other side will send no more data.
def closed(self): (source)
Called when the channel is closed. This means that both our side and the remote side have closed the channel.
def loseConnection(self): (source)
Close the channel.
API Documentation for twisted, generated by pydoctor.