Part of twisted.conch View Source
TAP plugin for creating telnet- and ssh-accessible manhole servers.
| Author | Jp Calderone | |
| Class | makeTelnetProtocol | Undocumented |
| Class | chainedProtocolFactory | Undocumented |
| Class | Options | Undocumented |
| Function | makeService | Create a manhole server service. |
| Class | _StupidRealm | Undocumented |
Create a manhole server service.
| Parameters | options | A mapping describing the configuration of the desired service. Recognized
key/value pairs are:
"telnetPort": strports description of the address on which
to listen for telnet connections. If None,
no telnet service will be started.
"sshPort": strports description of the address on which to
listen for ssh connections. If None, no ssh
service will be started.
"namespace": dictionary containing desired initial locals
for manhole connections. If None, an empty
dictionary will be used.
"passwd": Name of a passwd(5)-format username/password file.
(type: dict) |
| Returns | A manhole service. (type: twisted.application.service.IService) | |