class documentation

class SSHSessionProcessProtocol(protocol.ProcessProtocol): (source)

Implements interfaces: twisted.internet.interfaces.ITransport

View In Hierarchy

I am both an IProcessProtocol and an ITransport.

I am a transport to the remote endpoint and a process protocol to the local subsystem.

Method __init__ Undocumented
Method connection​Lost Undocumented
Method connection​Made Called when a connection is made.
Method err​Connection​Lost See outConnectionLost().
Method err​Received Some data was received from stderr.
Method get​Host Return the host from my session's transport.
Method get​Peer Return the peer from my session's transport.
Method lose​Connection Close my connection, after writing all pending data.
Method out​Connection​Lost EOF should only be sent when both STDOUT and STDERR have been closed.
Method out​Received Some data was received from stdout.
Method process​Ended When we are told the process ended, try to notify the other side about how the process ended using the exit-signal or exit-status requests. Also, close the channel.
Method write Write some data to the physical connection, in sequence, in a non-blocking fashion.
Method write​Sequence Write an iterable of byte strings to the physical connection.
Instance Variable lost​Out​Or​Err​Flag Undocumented
Instance Variable session Undocumented
Method _get​Signal​Name Get a signal name given a signal number.
Instance Variable _signal​Values​To​Names Undocumented

Inherited from ProcessProtocol:

Method child​Connection​Lost Called when a file descriptor associated with the child process is closed.
Method child​Data​Received Called when data arrives from the child process.
Method in​Connection​Lost This will be called when stdin is closed.
Method process​Exited This will be called when the subprocess exits.

Inherited from BaseProtocol (via ProcessProtocol):

Method make​Connection Make a connection to a transport and a server.
Instance Variable connected Undocumented
Instance Variable transport Undocumented
def __init__(self, session): (source)

Undocumented

def connectionLost(self, reason=None): (source)

Undocumented

def connectionMade(self): (source)

Called when a connection is made.

This may be considered the initializer of the protocol, because it is called when the connection is completed. For clients, this is called once the connection to the server has been established; for servers, this is called after an accept() call stops blocking and a socket has been received. If you need to send any greeting or initial message, do it here.

def errConnectionLost(self): (source)
def errReceived(self, err): (source)
Some data was received from stderr.
def getHost(self): (source)
Return the host from my session's transport.
def getPeer(self): (source)
Return the peer from my session's transport.
def loseConnection(self): (source)

Close my connection, after writing all pending data.

Note that if there is a registered producer on a transport it will not be closed until the producer has been unregistered.

def outConnectionLost(self): (source)
EOF should only be sent when both STDOUT and STDERR have been closed.
def outReceived(self, data): (source)
Some data was received from stdout.
def processEnded(self, reason=None): (source)
When we are told the process ended, try to notify the other side about how the process ended using the exit-signal or exit-status requests. Also, close the channel.
def write(self, data): (source)

Write some data to the physical connection, in sequence, in a non-blocking fashion.

If possible, make sure that it is all written. No data will ever be lost, although (obviously) the connection may be closed before it all gets through.

Parameters
dataThe data to write.
def writeSequence(self, seq): (source)

Write an iterable of byte strings to the physical connection.

If possible, make sure that all of the data is written to the socket at once, without first copying it all into a single byte string.

Parameters
seqUndocumented
dataThe data to write.
lostOutOrErrFlag: bool = (source)

Undocumented

session = (source)

Undocumented

def _getSignalName(self, signum): (source)
Get a signal name given a signal number.
_signalValuesToNames: dict = (source)

Undocumented