geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
693 B

  1. .\"
  2. .\" Copyright (c) 2009 by Daiki Ueno
  3. .\"
  4. .TH libssh2_agent_list_identities 3 "23 Dec 2009" "libssh2 1.2" "libssh2 manual"
  5. .SH NAME
  6. libssh2_agent_list_identities - request an ssh-agent to list of public keys.
  7. .SH SYNOPSIS
  8. #include <libssh2.h>
  9. int libssh2_agent_list_identities(LIBSSH2_AGENT *agent);
  10. .SH DESCRIPTION
  11. Request an ssh-agent to list of public keys, and stores them in the
  12. internal collection of the handle. Call
  13. \fIlibssh2_agent_get_identity(3)\fP to get a public key off the
  14. collection.
  15. .SH RETURN VALUE
  16. Returns 0 if succeeded, or a negative value for error.
  17. .SH AVAILABILITY
  18. Added in libssh2 1.2
  19. .SH SEE ALSO
  20. .BR libssh2_agent_connect(3)
  21. .BR libssh2_agent_get_identity(3)