cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

libssh2_session_abstract.3 (730B)


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