diff options
author | Jamie Bliss <jbliss@purestorage.com> | 2023-02-24 18:48:51 -0500 |
---|---|---|
committer | Jamie Bliss <jbliss@purestorage.com> | 2023-02-24 18:48:51 -0500 |
commit | e87d0c986efacfccb2e1b8a1919e08249c4ae0de (patch) | |
tree | ad9aba916b54b19439d65d930350e12b99387a26 | |
parent | 4ced4229b67d7e6e93e8e0ea0431d52075fbbaa3 (diff) |
Expand documentation on server agent handling.
-rw-r--r-- | paramiko/agent.py | 14 | ||||
-rw-r--r-- | paramiko/server.py | 3 |
2 files changed, 17 insertions, 0 deletions
diff --git a/paramiko/agent.py b/paramiko/agent.py index 73fa1f82..1cc9075f 100644 --- a/paramiko/agent.py +++ b/paramiko/agent.py @@ -65,6 +65,9 @@ class AgentSSH: no SSH agent was running (or it couldn't be contacted), an empty list will be returned. + This method performs no IO, just returns the list of keys retreived + when the connection was made. + :return: a tuple of `.AgentKey` objects representing keys available on the SSH agent @@ -277,6 +280,17 @@ class AgentClientProxy: class AgentServerProxy(AgentSSH): """ + Allows an SSH server to access a forwarded agent. + + This also creates a unix domain socket on the system to allow external + programs to also access the agent. For this reason, you probably only want + to create one of these. + + :meth:`connect` must be called before it is usable. This will also load the + list of keys the agent contains. You must also call :meth:`close` in + order to clean up the unix socket and the thread that maintains it. + (:class:`contextlib.closing` might be helpful to you.) + :param .Transport t: Transport used for SSH Agent communication forwarding :raises: `.SSHException` -- mostly if we lost the agent diff --git a/paramiko/server.py b/paramiko/server.py index 3875b8a2..db819a83 100644 --- a/paramiko/server.py +++ b/paramiko/server.py @@ -517,6 +517,9 @@ class ServerInterface: :param .Channel channel: the `.Channel` the request arrived on :return: ``True`` if the AgentForward was loaded; ``False`` if not + + If ``True`` is returned, the server should create an :class:`AgentServerProxy` + to access the agent. """ return False |