From f8ba12f0a645730500eb7982daf18fcff3e75f70 Mon Sep 17 00:00:00 2001 From: Norbert Pocs Date: Thu, 29 Sep 2022 11:06:43 +0200 Subject: [PATCH] agent.c: Add missing docu to libssh_auth group Signed-off-by: Norbert Pocs Reviewed-by: Jakub Jelen --- src/agent.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/agent.c b/src/agent.c index 299b4ad1..bb4d35a6 100644 --- a/src/agent.c +++ b/src/agent.c @@ -150,6 +150,12 @@ static void agent_set_channel(struct ssh_agent_struct *agent, ssh_channel channe agent->channel = channel; } +/** + * @addtogroup libssh_auth + * + * @{ + */ + /** @brief sets the SSH agent channel. * The SSH agent channel will be used to authenticate this client using * an agent through a channel, from another session. The most likely use @@ -189,6 +195,10 @@ int ssh_set_agent_socket(ssh_session session, socket_t fd){ return SSH_OK; } +/** + * @} + */ + void ssh_agent_close(struct ssh_agent_struct *agent) { if (agent == NULL) { return;