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.
 
 
 
 

24 lines
899 B

  1. .TH libssh2_session_flag 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
  2. .SH NAME
  3. libssh2_session_flag - TODO
  4. .SH SYNOPSIS
  5. int
  6. libssh2_session_flag(LIBSSH2_SESSION *session, int flag, int value);
  7. .SH DESCRIPTION
  8. Set options for the created session. \fIflag\fP is the option to set, while
  9. \fIvalue\fP is typically set to 1 or 0 to enable or disable the option.
  10. .SH FLAGS
  11. .IP LIBSSH2_FLAG_SIGPIPE
  12. If set, libssh2 will not attempt to block SIGPIPEs but will let them trigger
  13. from the underlying socket layer.
  14. .IP LIBSSH2_FLAG_COMPRESS
  15. If set - before the connection negotiation is performed - libssh2 will try to
  16. negotiate compression enabling for this connection. By default libssh2 will
  17. not attempt to use compression.
  18. .SH RETURN VALUE
  19. Returns regular libssh2 error code.
  20. .SH AVAILABILITY
  21. This function has existed since the age of dawn. LIBSSH2_FLAG_COMPRESS was
  22. added in version 1.2.8.
  23. .SH SEE ALSO