t.c.s.c.SSHChannel(log.Logger) : class documentation

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

Known subclasses: twisted.conch.client.agent.SSHAgentForwardingChannel, twisted.conch.scripts.cftp.SSHSession, twisted.conch.scripts.conch.SSHSession, twisted.conch.scripts.tkconch.SSHSession, twisted.conch.ssh.forwarding.SSHConnectForwardingChannel, twisted.conch.ssh.forwarding.SSHListenForwardingChannel, twisted.conch.ssh.session.SSHSession

Implements interfaces: twisted.internet.interfaces.ITransport

A class that represents a multiplexed channel over an SSH connection. The channel has a local window which is the maximum amount of data it will receive, and a remote which is the maximum amount of data the remote side will accept. There is also a maximum packet size for any individual data packet going each way.
Instance Variablesnamethe name of the channel. (type: str )
localWindowSizethe maximum size of the local window in bytes. (type: int )
localWindowLefthow many bytes are left in the local window. (type: int )
localMaxPacketthe maximum size of packet we will accept in bytes. (type: int )
remoteWindowLefthow many bytes are left in the remote window. (type: int )
remoteMaxPacketthe maximum size of a packet the remote side will accept in bytes. (type: int )
connthe connection this channel is multiplexed through. (type: SSHConnection )
dataany data to send to the other size when the channel is requested. (type: str )
avataran avatar for the logged-in user (if a server channel)
localClosedTrue if we aren't accepting more data. (type: bool )
remoteClosedTrue if the other size isn't accepting more data. (type: bool )
Method __init__ Undocumented
Method __str__ Undocumented
Method logPrefix 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 channelOpen Called when the channel is opened. specificData is any data that the other side sent us when opening the channel.
Method openFailed Called when the the open failed for some reason. reason.desc is a string descrption, reason.code the the SSH error code.
Method addWindowBytes Called when bytes are added to the remote window. By default it clears the data buffers.
Method requestReceived No summary
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 closeReceived Called when the other side has closed the channel.
Method closed Called when the channel is closed. This means that both our side and the remote side have closed the channel.
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 writeExtended 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 writeSequence Part of the Transport interface. Write a list of strings to the channel.
Method loseConnection Close the channel if there is no buferred data. Otherwise, note the request and return.
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. This can be ignored, but it can be helpful.
Method startWriting Called when the remote buffer has more room, as a hint to continue writing.
def __init__(self, localWindow=0, localMaxPacket=0, remoteWindow=0, remoteMaxPacket=0, conn=None, data=None, avatar=None): (source)
Undocumented
def __str__(self): (source)
Undocumented
def logPrefix(self): (source)
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.
def channelOpen(self, specificData): (source)
Called when the channel is opened. specificData is any data that the other side sent us when opening the channel.
ParametersspecificData (type: str )
def openFailed(self, reason): (source)
Called when the the open failed for some reason. reason.desc is a string descrption, reason.code the the SSH error code.
Parametersreason (type: error.ConchError )
def addWindowBytes(self, bytes): (source)
Called when bytes are added to the remote window. By default it clears the data buffers.
Parametersbytes (type: int )
def requestReceived(self, requestType, data): (source)
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.
ParametersrequestType (type: str )
data (type: str )
Returns (type: bool )
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 closeReceived(self): (source)
Called when the other side has closed the channel.
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 write(self, data): (source)
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.
Parametersdata (type: str )
def writeExtended(self, dataType, data): (source)
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.
ParametersdataType (type: int )
data (type: str )
def writeSequence(self, data): (source)
Part of the Transport interface. Write a list of strings to the channel.
Parametersdata (type: list of str )
def loseConnection(self): (source)
Close the channel if there is no buferred data. Otherwise, note the request and return.
def getPeer(self): (source)
Return a tuple describing the other side of the connection.
Returns (type: tuple )
def getHost(self): (source)
Return a tuple describing our side of the connection.
Returns (type: tuple )
def stopWriting(self): (source)
Called when the remote buffer is full, as a hint to stop writing. This can be ignored, but it can be helpful.
def startWriting(self): (source)
Called when the remote buffer has more room, as a hint to continue writing.
API Documentation for Twisted, generated by pydoctor at 2011-10-27 16:27:37.