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