agent             677 src/vfs/sftpfs/connection.c     sftpfs_super->agent = NULL;
agent             683 src/vfs/sftpfs/connection.c     sftpfs_super->agent = libssh2_agent_init (sftpfs_super->session);
agent             684 src/vfs/sftpfs/connection.c     if (sftpfs_super->agent == NULL)
agent             687 src/vfs/sftpfs/connection.c     if (libssh2_agent_connect (sftpfs_super->agent) != 0)
agent             690 src/vfs/sftpfs/connection.c     if (libssh2_agent_list_identities (sftpfs_super->agent) != 0)
agent             695 src/vfs/sftpfs/connection.c         rc = libssh2_agent_get_identity (sftpfs_super->agent, &identity, prev_identity);
agent             702 src/vfs/sftpfs/connection.c         if (libssh2_agent_userauth (sftpfs_super->agent, super->path_element->user, identity) == 0)
agent             990 src/vfs/sftpfs/connection.c     if (sftpfs_super->agent != NULL)
agent             992 src/vfs/sftpfs/connection.c         libssh2_agent_disconnect (sftpfs_super->agent);
agent             993 src/vfs/sftpfs/connection.c         libssh2_agent_free (sftpfs_super->agent);
agent             994 src/vfs/sftpfs/connection.c         sftpfs_super->agent = NULL;
agent              51 src/vfs/sftpfs/internal.h     LIBSSH2_AGENT *agent;