Part of twisted.conch.scripts.tkconch View Source View In Hierarchy
Method | receiveError | Called when we receive a disconnect error message from the other |
Method | sendDisconnect | Send a disconnect message to the other side and then disconnect. |
Method | receiveDebug | Called when we receive a debug message from the other side. |
Method | verifyHostKey | Returns a Deferred that gets a callback if it is a valid key, or |
Method | connectionSecure | Called when the encryption has been set up. Generally, |
Method | _cbVerifyHostKey | Undocumented |
Inherited from SSHClientTransport:
Method | connectionMade | Called when the connection is started with the server. Just sets |
Method | ssh_KEXINIT | Called when we receive a MSG_KEXINIT message. For a description |
Method | ssh_KEX_DH_GEX_GROUP | This handles two different message which share an integer value. |
Method | ssh_KEX_DH_GEX_REPLY | Called when we receieve a MSG_KEX_DH_GEX_REPLY message. Payload: |
Method | ssh_NEWKEYS | Called when we receieve a MSG_NEWKEYS message. No payload. |
Method | ssh_SERVICE_ACCEPT | Called when we receieve a MSG_SERVICE_ACCEPT message. Payload: |
Method | requestService | Request that a service be run over this transport. |
Method | _continueKEXDH_REPLY | The host key has been verified, so we generate the keys. |
Method | _continueGEX_REPLY | The host key has been verified, so we generate the keys. |
Method | _keySetup | See SSHTransportBase._keySetup(). |
Inherited from SSHTransportBase (via SSHClientTransport):
Method | connectionLost | Called when the connection is shut down. |
Method | sendKexInit | Undocumented |
Method | sendPacket | Sends a packet. If it's been set up, compress the data, encrypt it, |
Method | getPacket | Try to return a decrypted, authenticated, and decompressed packet |
Method | dataReceived | First, check for the version string (SSH-2.0-*). After that has been |
Method | dispatchMessage | Send a received message to the appropriate method. |
Method | ssh_DISCONNECT | Called when we receive a MSG_DISCONNECT message. Payload: |
Method | ssh_IGNORE | Called when we receieve a MSG_IGNORE message. No payload. |
Method | ssh_UNIMPLEMENTED | Called when we receieve a MSG_UNIMPLEMENTED message. Payload: |
Method | ssh_DEBUG | Called when we receieve a MSG_DEBUG message. Payload: |
Method | setService | Set our service to service and start it running. If we were |
Method | sendDebug | Send a debug message to the other side. |
Method | sendIgnore | Send a message that will be ignored by the other side. This is |
Method | sendUnimplemented | Send a message to the other side that the last packet was not |
Method | isEncrypted | Return True if the connection is encrypted in the given direction. |
Method | isVerified | Return True if the connecction is verified/authenticated in the |
Method | loseConnection | Lose the connection to the other side, sending a |
Method | receiveUnimplemented | Called when we receive an unimplemented packet message from the other |
Method | _getKey | Get one of the keys for authentication/encryption. |
Inherited from BaseProtocol (via SSHClientTransport, SSHTransportBase, Protocol):
Method | makeConnection | Make a connection to a transport and a server. |
Parameters | reasonCode | the reason for the disconnect, one of the DISCONNECT_ values.
(type: int
) |
description | a human-readable description of the disconnection.
(type: str
) |
Parameters | reason | the reason for the disconnect. Should be one of the DISCONNECT_* values.
(type: int
) |
desc | a descrption of the reason for the disconnection.
(type: str
) |
Parameters | alwaysDisplay | if True, this message should always be displayed.
(type: bool
) |
message | the debug message
(type: str
) | |
lang | optionally the language the message is in.
(type: str
) |
Parameters | hostKey | (type: str
) |
fingerprint | (type: str
) | |
Returns | (type: twisted.internet.defer.Deferred
) |