module documentation
This module contains the implementation of SSHSession, which (by default) allows access to a shell and a python interpreter over SSH.
Maintainer: Paul Swartz
Class |
|
A generalized implementation of an SSH session. |
Class |
|
Undocumented |
Class |
|
I am both an IProcessProtocol and an ITransport . |
Function | pack |
Pack a pty-req request so that it is suitable for sending. |
Function | pack |
Pack a window-change request so that it is suitable for sending. |
Function | parse |
Parse the data from a pty-req request into usable data. |
Function | parse |
Parse the data from a window-change request into usuable data. |
Function | wrap |
Undocumented |
Function | wrap |
Undocumented |
Constant | SUPPORTED |
Undocumented |
Variable | log |
Undocumented |
Class | _ |
Undocumented |
Class | _ |
This class wraps a Protocol instance in a ProcessProtocol instance. |
Pack a pty-req request so that it is suitable for sending.
NOTE: modes must be packed before being sent here.
Parameters | |
term | Undocumented |
geometry:tuple | A tuple of (rows, columns, xpixel, ypixel) |
modes | Undocumented |
Pack a window-change request so that it is suitable for sending.
Parameters | |
geometry:tuple | A tuple of (rows, columns, xpixel, ypixel) |
Parse the data from a pty-req request into usable data.
Returns | |
a tuple of (terminal type, (rows, cols, xpixel, ypixel), modes) |
Parse the data from a window-change request into usuable data.
Returns | |
a tuple of (rows, cols, xpixel, ypixel) |