annotate CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/share/man/man3/libssh2_trace.3 @ 68:5028fdace37b

planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author jpayne
date Tue, 18 Mar 2025 16:23:26 -0400
parents
children
rev   line source
jpayne@68 1 .TH libssh2_trace 3 "26 Dec 2008" "libssh2 1.0" "libssh2 manual"
jpayne@68 2 .SH NAME
jpayne@68 3 libssh2_trace - enable debug info from inside libssh2
jpayne@68 4 .SH SYNOPSIS
jpayne@68 5 #include <libssh2.h>
jpayne@68 6
jpayne@68 7 void libssh2_trace(LIBSSH2_SESSION *session, int bitmask);
jpayne@68 8
jpayne@68 9 .SH DESCRIPTION
jpayne@68 10 This is a function present in the library that can be used to get debug info
jpayne@68 11 from within libssh2 when it is running. Helpful when trying to trace or debug
jpayne@68 12 behaviors. Note that this function has no effect unless libssh2 was built to
jpayne@68 13 support tracing! It is usually disabled in release builds.
jpayne@68 14
jpayne@68 15 \fBbitmask\fP can be set to the logical OR of none, one or more of these:
jpayne@68 16 .RS
jpayne@68 17 .IP LIBSSH2_TRACE_SOCKET
jpayne@68 18 Socket low-level debugging
jpayne@68 19 .IP LIBSSH2_TRACE_TRANS
jpayne@68 20 Transport layer debugging
jpayne@68 21 .IP LIBSSH2_TRACE_KEX
jpayne@68 22 Key exchange debugging
jpayne@68 23 .IP LIBSSH2_TRACE_AUTH
jpayne@68 24 Authentication debugging
jpayne@68 25 .IP LIBSSH2_TRACE_CONN
jpayne@68 26 Connection layer debugging
jpayne@68 27 .IP LIBSSH2_TRACE_SCP
jpayne@68 28 SCP debugging
jpayne@68 29 .IP LIBSSH2_TRACE_SFTP
jpayne@68 30 SFTP debugging
jpayne@68 31 .IP LIBSSH2_TRACE_ERROR
jpayne@68 32 Error debugging
jpayne@68 33 .IP LIBSSH2_TRACE_PUBLICKEY
jpayne@68 34 Public Key debugging
jpayne@68 35 .RE