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
733 B

  1. .TH libssh2_session_abstract 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
  2. .SH NAME
  3. libssh2_session_abstract - return a pointer to a session's abstract pointer
  4. .SH SYNOPSIS
  5. #include <libssh2.h>
  6. void **
  7. libssh2_session_abstract(LIBSSH2_SESSION *session);
  8. .SH DESCRIPTION
  9. \fIsession\fP - Session instance as returned by
  10. .BR libssh2_session_init_ex(3)
  11. Return a pointer to where the abstract pointer provided to
  12. \fBlibssh2_session_init_ex(3)\fP is stored. By providing a doubly
  13. de-referenced pointer, the internal storage of the session instance may be
  14. modified in place.
  15. .SH RETURN VALUE
  16. A pointer to session internal storage who's contents point to previously
  17. provided abstract data.
  18. .SH SEE ALSO
  19. .BR libssh2_session_init_ex(3)