agent             669 src/vfs/sftpfs/connection.c     sftpfs_super->agent = NULL;
agent             675 src/vfs/sftpfs/connection.c     sftpfs_super->agent = libssh2_agent_init (sftpfs_super->session);
agent             676 src/vfs/sftpfs/connection.c     if (sftpfs_super->agent == NULL)
agent             679 src/vfs/sftpfs/connection.c     if (libssh2_agent_connect (sftpfs_super->agent) != 0)
agent             682 src/vfs/sftpfs/connection.c     if (libssh2_agent_list_identities (sftpfs_super->agent) != 0)
agent             687 src/vfs/sftpfs/connection.c         rc = libssh2_agent_get_identity (sftpfs_super->agent, &identity, prev_identity);
agent             694 src/vfs/sftpfs/connection.c         if (libssh2_agent_userauth (sftpfs_super->agent, super->path_element->user, identity) == 0)
agent             982 src/vfs/sftpfs/connection.c     if (sftpfs_super->agent != NULL)
agent             984 src/vfs/sftpfs/connection.c         libssh2_agent_disconnect (sftpfs_super->agent);
agent             985 src/vfs/sftpfs/connection.c         libssh2_agent_free (sftpfs_super->agent);
agent             986 src/vfs/sftpfs/connection.c         sftpfs_super->agent = NULL;
agent              51 src/vfs/sftpfs/internal.h     LIBSSH2_AGENT *agent;