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.
 
 
 
 

27 lines
878 B

  1. .\"
  2. .\" Copyright (c) 2009 by Daiki Ueno
  3. .\"
  4. .TH libssh2_agent_init 3 "23 Dec 2009" "libssh2 1.2" "libssh2 manual"
  5. .SH NAME
  6. libssh2_agent_init - init an ssh-agent handle
  7. .SH SYNOPSIS
  8. #include <libssh2.h>
  9. LIBSSH2_AGENT *libssh2_agent_init(LIBSSH2_SESSION *session);
  10. .SH DESCRIPTION
  11. Init an ssh-agent handle. Returns the handle to an internal
  12. representation of an ssh-agent connection. After the successful
  13. initialization, an application can call \fBlibssh2_agent_connect(3)\fP
  14. to connect to a running ssh-agent.
  15. Call \fBlibssh2_agent_free(3)\fP to free the handle again after you're
  16. doing using it.
  17. .SH RETURN VALUE
  18. Returns a handle pointer or NULL if something went wrong. The returned handle
  19. is used as input to all other ssh-agent related functions libssh2 provides.
  20. .SH AVAILABILITY
  21. Added in libssh2 1.2
  22. .SH SEE ALSO
  23. .BR libssh2_agent_connect(3)
  24. .BR libssh2_agent_free(3)