Hot answers tagged twisted.conch
2
There are two extra callbacks you might want to implement for this. These are callbacks on the channel, so you're pretty close already.
The first is request_exit_status. Once you implement this, Conch will no longer log that the exit-status request is unhandled. Here's an example implementation:
def request_exit_status(self, data):
"""
When the ...
2
It sounds like you're using twisted.conch.client.direct.SSHClientFactory and twisted.conch.client.direct.SSHClientTransport. These classes are most directly intended to be used to implement the conch command line tool. This means they're fairly useful for building an SSH client, since that's exactly what conch is.
However, they're also somewhat less ...
Only top voted, non community-wiki answers of a minimum length are eligible