diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-03-03 12:31:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-03 12:31:32 -0500 |
commit | 888f18bd230a6bf69a35786403a8e972d3a18c58 (patch) | |
tree | e07ff45d158119db429a943f334c2a6e9e553186 | |
parent | 29bbc9c13f355680b58fcfbe5735f2444f6017f9 (diff) | |
parent | e87d0c986efacfccb2e1b8a1919e08249c4ae0de (diff) |
Merge pull request #2193 from AstraLuma/server-agent-docs
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 |