Refer to the exact symbol name, which also is the exact file name of the man
page file.
This commit is contained in:
parent
c7a1d30590
commit
0dbc6ed8b6
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_banner_set.3,v 1.2 2009/02/17 16:22:17 dottedmag Exp $
|
.\" $Id: libssh2_banner_set.3,v 1.3 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_banner_set 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_banner_set 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_banner_set(LIBSSH2_SESSION *session, const char *banner);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIbanner\fP - A pointer to a user defined banner
|
\fIbanner\fP - A pointer to a user defined banner
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_channel_direct_tcpip_ex.3,v 1.1 2007/06/13 17:22:15 jehousley Exp $
|
.\" $Id: libssh2_channel_direct_tcpip_ex.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_channel_direct_tcpip_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_channel_direct_tcpip_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -14,7 +14,7 @@ libssh2_channel_direct_tcpip(LIBSSH2_SESSION *session, const char *host, int por
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
/fIsession/fP - Session instance as returned by
|
/fIsession/fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
/fIhost/fP - Third party host to connect to using the SSH host as a proxy.
|
/fIhost/fP - Third party host to connect to using the SSH host as a proxy.
|
||||||
|
|
||||||
@ -31,9 +31,7 @@ in cleartext.
|
|||||||
|
|
||||||
.SH RETURN VALUE
|
.SH RETURN VALUE
|
||||||
Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors.
|
Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors.
|
||||||
|
|
||||||
.SH ERRORS
|
.SH ERRORS
|
||||||
\fILIBSSH2_ERROR_ALLOC\fP - An internal memory allocation call failed.
|
\fILIBSSH2_ERROR_ALLOC\fP - An internal memory allocation call failed.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_channel_open_ex.3,v 1.1 2007/06/13 20:54:25 jehousley Exp $
|
.\" $Id: libssh2_channel_open_ex.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_channel_open_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_channel_open_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -14,7 +14,7 @@ libssh2_channel_open_session(session);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIchannel_type\fP - Channel type to open. Typically one of session,
|
\fIchannel_type\fP - Channel type to open. Typically one of session,
|
||||||
direct-tcpip, or tcpip-forward. The SSH2 protocol allowed for additional
|
direct-tcpip, or tcpip-forward. The SSH2 protocol allowed for additional
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_hostkey_hash.3,v 1.1 2007/06/14 14:56:32 jehousley Exp $
|
.\" $Id: libssh2_hostkey_hash.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_hostkey_hash 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_hostkey_hash 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_hostkey_hash(LIBSSH2_SESSION *session, int hash_type);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIhash_type\fP - One of: \fBLIBSSH2_HOSTKEY_HASH_MD5\fP or
|
\fIhash_type\fP - One of: \fBLIBSSH2_HOSTKEY_HASH_MD5\fP or
|
||||||
\fBLIBSSH2_HOSTKEY_HASH_SHA1\fP.
|
\fBLIBSSH2_HOSTKEY_HASH_SHA1\fP.
|
||||||
@ -19,11 +19,9 @@ libssh2_hostkey_hash(LIBSSH2_SESSION *session, int hash_type);
|
|||||||
Returns the computed digest of the remote system's hostkey. The length of
|
Returns the computed digest of the remote system's hostkey. The length of
|
||||||
the returned string is hash_type specific (e.g. 16 bytes for MD5,
|
the returned string is hash_type specific (e.g. 16 bytes for MD5,
|
||||||
20 bytes for SHA1).
|
20 bytes for SHA1).
|
||||||
|
|
||||||
.SH RETURN VALUE
|
.SH RETURN VALUE
|
||||||
Computed hostkey hash value. or NULL if the session has not yet been started
|
Computed hostkey hash value. or NULL if the session has not yet been started
|
||||||
up. (The hash consists of raw binary bytes, not hex digits, so is not
|
up. (The hash consists of raw binary bytes, not hex digits, so is not
|
||||||
directly printable.)
|
directly printable.)
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_scp_recv.3,v 1.2 2009/03/16 23:25:14 bagder Exp $
|
.\" $Id: libssh2_scp_recv.3,v 1.3 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_scp_recv 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_scp_recv 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_scp_recv(LIBSSH2_SESSION *session, const char *path, struct stat *sb);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIpath\fP - Full path and filename of file to transfer
|
\fIpath\fP - Full path and filename of file to transfer
|
||||||
|
|
||||||
@ -28,6 +28,6 @@ Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors.
|
|||||||
\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would
|
\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would
|
||||||
block.
|
block.
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
.BR libssh2_channel_open_ex(3)
|
.BR libssh2_channel_open_ex(3)
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_scp_send_ex.3,v 1.2 2009/03/16 23:25:14 bagder Exp $
|
.\" $Id: libssh2_scp_send_ex.3,v 1.3 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_scp_send_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_scp_send_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -10,7 +10,7 @@ LIBSSH2_CHANNEL *
|
|||||||
libssh2_scp_send_ex(LIBSSH2_SESSION *session, const char *path, int mode, size_t size, long mtime, long atime);
|
libssh2_scp_send_ex(LIBSSH2_SESSION *session, const char *path, int mode, size_t size, long mtime, long atime);
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIpath\fP - Full path and filename of file to transfer
|
\fIpath\fP - Full path and filename of file to transfer
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_session_block_directions.3,v 1.2 2008/12/22 12:51:27 bagder Exp $
|
.\" $Id: libssh2_session_block_directions.3,v 1.3 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_session_block_directions 3 "1 Oct 2008" "libssh2 1.0" "libssh2 manual"
|
.TH libssh2_session_block_directions 3 "1 Oct 2008" "libssh2 1.0" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -9,7 +9,7 @@ libssh2_session_block_directions - get directions that socket should wait for be
|
|||||||
int
|
int
|
||||||
libssh2_session_block_directions(LIBSSH2_SESSION *session);
|
libssh2_session_block_directions(LIBSSH2_SESSION *session);
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by \fBlibssh2_session_init(3)\fP
|
\fIsession\fP - Session instance as returned by \fBlibssh2_session_init_ex(3)\fP
|
||||||
|
|
||||||
When any of libssh2 functions return \fBLIBSSH2_ERROR_EAGAIN\fP an application
|
When any of libssh2 functions return \fBLIBSSH2_ERROR_EAGAIN\fP an application
|
||||||
should wait for the socket to have data available for reading or
|
should wait for the socket to have data available for reading or
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_session_callback_set.3,v 1.1 2007/06/14 15:26:58 jehousley Exp $
|
.\" $Id: libssh2_session_callback_set.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_session_callback_set 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_session_callback_set 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_session_callback_set(LIBSSH2_SESSION *session, int cbtype, void *callbac
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIcbtype\fP - Callback type. One of the types listed in Callback Types.
|
\fIcbtype\fP - Callback type. One of the types listed in Callback Types.
|
||||||
|
|
||||||
@ -27,4 +27,4 @@ Pointer to previous callback handler. Returns NULL if no
|
|||||||
prior callback handler was set.
|
prior callback handler was set.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_session_disconnect_ex.3,v 1.4 2007/06/13 16:41:33 jehousley Exp $
|
.\" $Id: libssh2_session_disconnect_ex.3,v 1.5 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_session_disconnect_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_session_disconnect_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -14,7 +14,7 @@ libssh2_session_disconnect(LIBSSH2_SESSION *session, const char *description);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIreason\fP - One of the Disconnect Reason constants.
|
\fIreason\fP - One of the Disconnect Reason constants.
|
||||||
|
|
||||||
@ -37,4 +37,4 @@ Return 0 on success or negative on failure. It returns
|
|||||||
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
|
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
|
||||||
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
|
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_session_last_errno.3,v 1.1 2007/06/13 23:02:08 jehousley Exp $
|
.\" $Id: libssh2_session_last_errno.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_session_last_errno 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_session_last_errno 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_session_last_errno(LIBSSH2_SESSION *session);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
Determine the most recent error condition.
|
Determine the most recent error condition.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_session_last_error.3,v 1.1 2007/06/13 23:02:08 jehousley Exp $
|
.\" $Id: libssh2_session_last_error.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_session_last_error 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_session_last_error 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_session_last_error(LIBSSH2_SESSION *session, char **errmsg, int *errmsg_
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIerrmsg\fP - If not NULL, is populated by reference with the human
|
\fIerrmsg\fP - If not NULL, is populated by reference with the human
|
||||||
readable form of the most recent error message.
|
readable form of the most recent error message.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_session_method_pref.3,v 1.1 2007/06/14 15:26:58 jehousley Exp $
|
.\" $Id: libssh2_session_method_pref.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_session_method_pref 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_session_method_pref 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_session_method_pref(LIBSSH2_SESSION *session, int method_type, const cha
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fImethod_type\fP - One of the Method Type constants.
|
\fImethod_type\fP - One of the Method Type constants.
|
||||||
|
|
||||||
@ -38,5 +38,5 @@ LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
|
|||||||
\fILIBSSH2_ERROR_METHOD_NOT_SUPPORTED\fP - The requested method is not supported.
|
\fILIBSSH2_ERROR_METHOD_NOT_SUPPORTED\fP - The requested method is not supported.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
.BR libssh2_session_startup(3)
|
.BR libssh2_session_startup(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_session_methods.3,v 1.1 2007/06/14 15:26:58 jehousley Exp $
|
.\" $Id: libssh2_session_methods.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_session_methods 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_session_methods 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_session_methods(LIBSSH2_SESSION *session, int method_type);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fImethod_type\fP - One of the Method Type constants.
|
\fImethod_type\fP - One of the Method Type constants.
|
||||||
|
|
||||||
@ -26,4 +26,4 @@ Negotiated method or NULL if the session has not yet been started.
|
|||||||
\fILIBSSH2_ERROR_METHOD_NONE\fP -
|
\fILIBSSH2_ERROR_METHOD_NONE\fP -
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_sftp_close_handle.3,v 1.2 2009/03/16 23:25:14 bagder Exp $
|
.\" $Id: libssh2_sftp_close_handle.3,v 1.3 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_sftp_close_handle 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_sftp_close_handle 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -17,10 +17,8 @@ int
|
|||||||
libssh2_sftp_closedir(LIBSSH2_SFTP_HANDLE *handle);
|
libssh2_sftp_closedir(LIBSSH2_SFTP_HANDLE *handle);
|
||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIhandle\fP - SFTP File Handle as returned by
|
\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open_ex(3)\fP
|
||||||
.BR libssh2_sftp_open(3)
|
or \fBlibssh2_sftp_opendir(3)\fP (which is a macro).
|
||||||
or
|
|
||||||
.BR libssh2_sftp_opendir(3)
|
|
||||||
|
|
||||||
Close an active LIBSSH2_SFTP_HANDLE. Because files and directories
|
Close an active LIBSSH2_SFTP_HANDLE. Because files and directories
|
||||||
share the same underlying storage mechanism these methods may be used
|
share the same underlying storage mechanism these methods may be used
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_sftp_read.3,v 1.9 2009/03/16 23:25:14 bagder Exp $
|
.\" $Id: libssh2_sftp_read.3,v 1.10 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_sftp_read 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_sftp_read 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -12,7 +12,7 @@ libssh2_sftp_read(LIBSSH2_SFTP_HANDLE *handle, char *buffer, size_t buffer_maxle
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIhandle\fP is the SFTP File Handle as returned by
|
\fIhandle\fP is the SFTP File Handle as returned by
|
||||||
.BR libssh2_sftp_open(3)
|
.BR libssh2_sftp_open_ex(3)
|
||||||
|
|
||||||
\fIbuffer\fP is a pointer to a pre-allocated buffer of at least
|
\fIbuffer\fP is a pointer to a pre-allocated buffer of at least
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_sftp_seek.3,v 1.4 2009/03/16 23:25:14 bagder Exp $
|
.\" $Id: libssh2_sftp_seek.3,v 1.5 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_sftp_seek 3 "22 Dec 2008" "libssh2 1.0" "libssh2 manual"
|
.TH libssh2_sftp_seek 3 "22 Dec 2008" "libssh2 1.0" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -15,7 +15,7 @@ libssh2_sftp_seek64(LIBSSH2_SFTP_HANDLE *handle, libssh2_uint64_t offset);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIhandle\fP - SFTP File Handle as returned by
|
\fIhandle\fP - SFTP File Handle as returned by
|
||||||
.BR libssh2_sftp_open(3)
|
.BR libssh2_sftp_open_ex(3)
|
||||||
|
|
||||||
\fIoffset\fP - Number of bytes from the beginning of file to seek to.
|
\fIoffset\fP - Number of bytes from the beginning of file to seek to.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_sftp_tell.3,v 1.2 2008/12/22 12:46:45 bagder Exp $
|
.\" $Id: libssh2_sftp_tell.3,v 1.3 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_sftp_tell 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_sftp_tell 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,12 +11,12 @@ size_t
|
|||||||
libssh2_sftp_tell(LIBSSH2_SFTP_HANDLE *handle);
|
libssh2_sftp_tell(LIBSSH2_SFTP_HANDLE *handle);
|
||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open(3)\fP.
|
\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open_ex(3)\fP.
|
||||||
|
|
||||||
Returns the current offset of the file handle's internal pointer. Note that
|
Returns the current offset of the file handle's internal pointer. Note that
|
||||||
this is now deprecated. Use the newer \fBlibssh2_sftp_tell64(3)\fP instead!
|
this is now deprecated. Use the newer \fBlibssh2_sftp_tell64(3)\fP instead!
|
||||||
.SH RETURN VALUE
|
.SH RETURN VALUE
|
||||||
Current offset from beginning of file in bytes.
|
Current offset from beginning of file in bytes.
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_sftp_open(3),
|
.BR libssh2_sftp_open_ex(3),
|
||||||
.BR libssh2_sftp_tell64(3)
|
.BR libssh2_sftp_tell64(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_sftp_tell64.3,v 1.1 2008/12/22 12:46:45 bagder Exp $
|
.\" $Id: libssh2_sftp_tell64.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_sftp_tell64 3 "22 Dec 2008" "libssh2 1.0" "libssh2 manual"
|
.TH libssh2_sftp_tell64 3 "22 Dec 2008" "libssh2 1.0" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_uint64_t
|
|||||||
libssh2_sftp_tell64(LIBSSH2_SFTP_HANDLE *handle);
|
libssh2_sftp_tell64(LIBSSH2_SFTP_HANDLE *handle);
|
||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open(3)\fP
|
\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open_ex(3)\fP
|
||||||
|
|
||||||
Identify the current offset of the file handle's internal pointer.
|
Identify the current offset of the file handle's internal pointer.
|
||||||
.SH RETURN VALUE
|
.SH RETURN VALUE
|
||||||
@ -19,5 +19,5 @@ Current offset from beginning of file in bytes.
|
|||||||
.SH AVAILABILITY
|
.SH AVAILABILITY
|
||||||
Added in libssh2 1.0
|
Added in libssh2 1.0
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_sftp_open(3),
|
.BR libssh2_sftp_open_ex(3),
|
||||||
.BR libssh2_sftp_tell(3)
|
.BR libssh2_sftp_tell(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_sftp_write.3,v 1.2 2008/12/23 12:34:17 bagder Exp $
|
.\" $Id: libssh2_sftp_write.3,v 1.3 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_sftp_write 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_sftp_write 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -12,7 +12,7 @@ libssh2_sftp_write(LIBSSH2_SFTP_HANDLE *handle, const char *buffer, size_t count
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIhandle\fP - SFTP File Handle as returned by
|
\fIhandle\fP - SFTP File Handle as returned by
|
||||||
.BR libssh2_sftp_open(3)
|
.BR libssh2_sftp_open_ex(3)
|
||||||
|
|
||||||
\fIbuffer\fP - Pre-initialized data buffer to write to the LIBSSH2_SFTP_HANDLE.
|
\fIbuffer\fP - Pre-initialized data buffer to write to the LIBSSH2_SFTP_HANDLE.
|
||||||
|
|
||||||
@ -38,4 +38,4 @@ received on the socket, or an SFTP operation caused an errorcode to
|
|||||||
be returned by the server.
|
be returned by the server.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_sftp_open(3)
|
.BR libssh2_sftp_open_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_userauth_authenticated.3,v 1.1 2007/06/14 17:15:32 jehousley Exp $
|
.\" $Id: libssh2_userauth_authenticated.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_userauth_authenticated 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_userauth_authenticated 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_userauth_authenticated(LIBSSH2_SESSION *session);
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
Indicates whether or not the named session has been successfully authenticated.
|
Indicates whether or not the named session has been successfully authenticated.
|
||||||
|
|
||||||
@ -19,4 +19,4 @@ Indicates whether or not the named session has been successfully authenticated.
|
|||||||
Returns 1 if authenticated and 0 if not.
|
Returns 1 if authenticated and 0 if not.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_userauth_keyboard_interactive_ex.3,v 1.1 2008/03/08 18:26:32 dottedmag Exp $
|
.\" $Id: libssh2_userauth_keyboard_interactive_ex.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_userauth_keyboard_interactive_ex 3 "8 Mar 2008" "libssh2 0.19" "libssh2 manual"
|
.TH libssh2_userauth_keyboard_interactive_ex 3 "8 Mar 2008" "libssh2 0.19" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -14,7 +14,7 @@ libssh2_userauth_keyboard_interactive(LIBSSH2_SESSION *session, const char *user
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIusername\fP - Name of user to attempt plain password authentication for.
|
\fIusername\fP - Name of user to attempt plain password authentication for.
|
||||||
|
|
||||||
@ -40,4 +40,4 @@ LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
|
|||||||
\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.
|
\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_userauth_list.3,v 1.1 2007/06/14 17:15:32 jehousley Exp $
|
.\" $Id: libssh2_userauth_list.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_userauth_list 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_userauth_list 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -11,7 +11,7 @@ libssh2_userauth_list(LIBSSH2_SESSION *session, const char *username, unsigned i
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIusername\fP - Username which will be used while authenticating. Note
|
\fIusername\fP - Username which will be used while authenticating. Note
|
||||||
that most server implementations do not permit attempting authentication
|
that most server implementations do not permit attempting authentication
|
||||||
@ -40,4 +40,4 @@ internally managed by libssh2. On failure ruturns NULL.
|
|||||||
\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call
|
\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_userauth_password_ex.3,v 1.1 2007/06/14 17:15:32 jehousley Exp $
|
.\" $Id: libssh2_userauth_password_ex.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_userauth_password_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_userauth_password_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -14,7 +14,7 @@ libssh2_userauth_password(LIBSSH2_SESSION *session, const char *username, const
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIusername\fP - Name of user to attempt plain password authentication for.
|
\fIusername\fP - Name of user to attempt plain password authentication for.
|
||||||
|
|
||||||
@ -47,4 +47,4 @@ LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
|
|||||||
\fILIBSSH2_ERROR_PASSWORD_EXPIRED\fP -
|
\fILIBSSH2_ERROR_PASSWORD_EXPIRED\fP -
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.\" $Id: libssh2_userauth_publickey_fromfile_ex.3,v 1.1 2009/03/16 14:40:37 bagder Exp $
|
.\" $Id: libssh2_userauth_publickey_fromfile_ex.3,v 1.2 2009/03/17 10:34:27 bagder Exp $
|
||||||
.\"
|
.\"
|
||||||
.TH libssh2_userauth_publickey_fromfile 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
.TH libssh2_userauth_publickey_fromfile 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
@ -14,7 +14,7 @@ libssh2_userauth_publickey_fromfile_ex(LIBSSH2_SESSION *session, const char *use
|
|||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fIsession\fP - Session instance as returned by
|
\fIsession\fP - Session instance as returned by
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
|
||||||
\fIusername\fP - Remote user name to authenticate as.
|
\fIusername\fP - Remote user name to authenticate as.
|
||||||
|
|
||||||
@ -48,4 +48,4 @@ combination was invalid, or the signature for the supplied public
|
|||||||
key was invalid.
|
key was invalid.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR libssh2_session_init(3)
|
.BR libssh2_session_init_ex(3)
|
||||||
|
Loading…
Reference in New Issue
Block a user