diff --git a/docs/libssh2_banner_set.3 b/docs/libssh2_banner_set.3 index ff34140f..04da2426 100644 --- a/docs/libssh2_banner_set.3 +++ b/docs/libssh2_banner_set.3 @@ -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" .SH NAME @@ -11,7 +11,7 @@ libssh2_banner_set(LIBSSH2_SESSION *session, const char *banner); .SH DESCRIPTION \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 diff --git a/docs/libssh2_channel_direct_tcpip_ex.3 b/docs/libssh2_channel_direct_tcpip_ex.3 index 09e60779..3e779ed6 100644 --- a/docs/libssh2_channel_direct_tcpip_ex.3 +++ b/docs/libssh2_channel_direct_tcpip_ex.3 @@ -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" .SH NAME @@ -14,7 +14,7 @@ libssh2_channel_direct_tcpip(LIBSSH2_SESSION *session, const char *host, int por .SH DESCRIPTION /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. @@ -31,9 +31,7 @@ in cleartext. .SH RETURN VALUE Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors. - .SH ERRORS \fILIBSSH2_ERROR_ALLOC\fP - An internal memory allocation call failed. - .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_channel_open_ex.3 b/docs/libssh2_channel_open_ex.3 index e152fb80..cbec2eaf 100644 --- a/docs/libssh2_channel_open_ex.3 +++ b/docs/libssh2_channel_open_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" .SH NAME @@ -14,7 +14,7 @@ libssh2_channel_open_session(session); .SH DESCRIPTION \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, direct-tcpip, or tcpip-forward. The SSH2 protocol allowed for additional diff --git a/docs/libssh2_hostkey_hash.3 b/docs/libssh2_hostkey_hash.3 index 0345d280..b9dd4b11 100644 --- a/docs/libssh2_hostkey_hash.3 +++ b/docs/libssh2_hostkey_hash.3 @@ -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" .SH NAME @@ -11,7 +11,7 @@ libssh2_hostkey_hash(LIBSSH2_SESSION *session, int hash_type); .SH DESCRIPTION \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 \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 the returned string is hash_type specific (e.g. 16 bytes for MD5, 20 bytes for SHA1). - .SH RETURN VALUE 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 directly printable.) - .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_scp_recv.3 b/docs/libssh2_scp_recv.3 index a77fbf4f..f85c7afe 100644 --- a/docs/libssh2_scp_recv.3 +++ b/docs/libssh2_scp_recv.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" .SH NAME @@ -11,7 +11,7 @@ libssh2_scp_recv(LIBSSH2_SESSION *session, const char *path, struct stat *sb); .SH DESCRIPTION \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 @@ -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 block. .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) .BR libssh2_channel_open_ex(3) diff --git a/docs/libssh2_scp_send_ex.3 b/docs/libssh2_scp_send_ex.3 index a5bd4332..ace13e7c 100644 --- a/docs/libssh2_scp_send_ex.3 +++ b/docs/libssh2_scp_send_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" .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); .SH DESCRIPTION \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 diff --git a/docs/libssh2_session_block_directions.3 b/docs/libssh2_session_block_directions.3 index af3fcbb8..8b4c82cb 100644 --- a/docs/libssh2_session_block_directions.3 +++ b/docs/libssh2_session_block_directions.3 @@ -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" .SH NAME @@ -9,7 +9,7 @@ libssh2_session_block_directions - get directions that socket should wait for be int libssh2_session_block_directions(LIBSSH2_SESSION *session); .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 should wait for the socket to have data available for reading or diff --git a/docs/libssh2_session_callback_set.3 b/docs/libssh2_session_callback_set.3 index 75e73fd4..6f0bcadf 100644 --- a/docs/libssh2_session_callback_set.3 +++ b/docs/libssh2_session_callback_set.3 @@ -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" .SH NAME @@ -11,7 +11,7 @@ libssh2_session_callback_set(LIBSSH2_SESSION *session, int cbtype, void *callbac .SH DESCRIPTION \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. @@ -27,4 +27,4 @@ Pointer to previous callback handler. Returns NULL if no prior callback handler was set. .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_session_disconnect_ex.3 b/docs/libssh2_session_disconnect_ex.3 index 75482325..4c67b7f1 100644 --- a/docs/libssh2_session_disconnect_ex.3 +++ b/docs/libssh2_session_disconnect_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" .SH NAME @@ -14,7 +14,7 @@ libssh2_session_disconnect(LIBSSH2_SESSION *session, const char *description); .SH DESCRIPTION \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. @@ -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 is a negative number, it isn't really a failure per se. .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_session_last_errno.3 b/docs/libssh2_session_last_errno.3 index 3efa04bc..050f66c6 100644 --- a/docs/libssh2_session_last_errno.3 +++ b/docs/libssh2_session_last_errno.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" .SH NAME @@ -11,7 +11,7 @@ libssh2_session_last_errno(LIBSSH2_SESSION *session); .SH DESCRIPTION \fIsession\fP - Session instance as returned by -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) Determine the most recent error condition. diff --git a/docs/libssh2_session_last_error.3 b/docs/libssh2_session_last_error.3 index 8636ad2c..43f95b12 100644 --- a/docs/libssh2_session_last_error.3 +++ b/docs/libssh2_session_last_error.3 @@ -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" .SH NAME @@ -11,7 +11,7 @@ libssh2_session_last_error(LIBSSH2_SESSION *session, char **errmsg, int *errmsg_ .SH DESCRIPTION \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 readable form of the most recent error message. diff --git a/docs/libssh2_session_method_pref.3 b/docs/libssh2_session_method_pref.3 index 17a9d4c6..4732bb94 100644 --- a/docs/libssh2_session_method_pref.3 +++ b/docs/libssh2_session_method_pref.3 @@ -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" .SH NAME @@ -11,7 +11,7 @@ libssh2_session_method_pref(LIBSSH2_SESSION *session, int method_type, const cha .SH DESCRIPTION \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. @@ -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. .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) .BR libssh2_session_startup(3) diff --git a/docs/libssh2_session_methods.3 b/docs/libssh2_session_methods.3 index bfc7be57..ccd1ebe0 100644 --- a/docs/libssh2_session_methods.3 +++ b/docs/libssh2_session_methods.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" .SH NAME @@ -11,7 +11,7 @@ libssh2_session_methods(LIBSSH2_SESSION *session, int method_type); .SH DESCRIPTION \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. @@ -26,4 +26,4 @@ Negotiated method or NULL if the session has not yet been started. \fILIBSSH2_ERROR_METHOD_NONE\fP - .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_sftp_close_handle.3 b/docs/libssh2_sftp_close_handle.3 index 7d3a0c9a..17e1b139 100644 --- a/docs/libssh2_sftp_close_handle.3 +++ b/docs/libssh2_sftp_close_handle.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" .SH NAME @@ -17,10 +17,8 @@ int libssh2_sftp_closedir(LIBSSH2_SFTP_HANDLE *handle); .SH DESCRIPTION -\fIhandle\fP - SFTP File Handle as returned by -.BR libssh2_sftp_open(3) -or -.BR libssh2_sftp_opendir(3) +\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open_ex(3)\fP +or \fBlibssh2_sftp_opendir(3)\fP (which is a macro). Close an active LIBSSH2_SFTP_HANDLE. Because files and directories share the same underlying storage mechanism these methods may be used diff --git a/docs/libssh2_sftp_read.3 b/docs/libssh2_sftp_read.3 index cc07c719..23c756a3 100644 --- a/docs/libssh2_sftp_read.3 +++ b/docs/libssh2_sftp_read.3 @@ -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" .SH NAME @@ -12,7 +12,7 @@ libssh2_sftp_read(LIBSSH2_SFTP_HANDLE *handle, char *buffer, size_t buffer_maxle .SH DESCRIPTION \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 diff --git a/docs/libssh2_sftp_seek.3 b/docs/libssh2_sftp_seek.3 index 6dd695e5..7dfdd336 100644 --- a/docs/libssh2_sftp_seek.3 +++ b/docs/libssh2_sftp_seek.3 @@ -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" .SH NAME @@ -15,7 +15,7 @@ libssh2_sftp_seek64(LIBSSH2_SFTP_HANDLE *handle, libssh2_uint64_t offset); .SH DESCRIPTION \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. diff --git a/docs/libssh2_sftp_tell.3 b/docs/libssh2_sftp_tell.3 index ad72bd84..d0f0cdef 100644 --- a/docs/libssh2_sftp_tell.3 +++ b/docs/libssh2_sftp_tell.3 @@ -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" .SH NAME @@ -11,12 +11,12 @@ size_t libssh2_sftp_tell(LIBSSH2_SFTP_HANDLE *handle); .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 this is now deprecated. Use the newer \fBlibssh2_sftp_tell64(3)\fP instead! .SH RETURN VALUE Current offset from beginning of file in bytes. .SH SEE ALSO -.BR libssh2_sftp_open(3), +.BR libssh2_sftp_open_ex(3), .BR libssh2_sftp_tell64(3) diff --git a/docs/libssh2_sftp_tell64.3 b/docs/libssh2_sftp_tell64.3 index 37cc27aa..dc8670de 100644 --- a/docs/libssh2_sftp_tell64.3 +++ b/docs/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" .SH NAME @@ -11,7 +11,7 @@ libssh2_uint64_t libssh2_sftp_tell64(LIBSSH2_SFTP_HANDLE *handle); .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. .SH RETURN VALUE @@ -19,5 +19,5 @@ Current offset from beginning of file in bytes. .SH AVAILABILITY Added in libssh2 1.0 .SH SEE ALSO -.BR libssh2_sftp_open(3), +.BR libssh2_sftp_open_ex(3), .BR libssh2_sftp_tell(3) diff --git a/docs/libssh2_sftp_write.3 b/docs/libssh2_sftp_write.3 index 8c76323c..193f21f1 100644 --- a/docs/libssh2_sftp_write.3 +++ b/docs/libssh2_sftp_write.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" .SH NAME @@ -12,7 +12,7 @@ libssh2_sftp_write(LIBSSH2_SFTP_HANDLE *handle, const char *buffer, size_t count .SH DESCRIPTION \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. @@ -38,4 +38,4 @@ received on the socket, or an SFTP operation caused an errorcode to be returned by the server. .SH SEE ALSO -.BR libssh2_sftp_open(3) +.BR libssh2_sftp_open_ex(3) diff --git a/docs/libssh2_userauth_authenticated.3 b/docs/libssh2_userauth_authenticated.3 index 4a9a10bb..0e400085 100644 --- a/docs/libssh2_userauth_authenticated.3 +++ b/docs/libssh2_userauth_authenticated.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" .SH NAME @@ -11,7 +11,7 @@ libssh2_userauth_authenticated(LIBSSH2_SESSION *session); .SH DESCRIPTION \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. @@ -19,4 +19,4 @@ Indicates whether or not the named session has been successfully authenticated. Returns 1 if authenticated and 0 if not. .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_userauth_keyboard_interactive_ex.3 b/docs/libssh2_userauth_keyboard_interactive_ex.3 index 30db6270..80572aec 100644 --- a/docs/libssh2_userauth_keyboard_interactive_ex.3 +++ b/docs/libssh2_userauth_keyboard_interactive_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" .SH NAME @@ -14,7 +14,7 @@ libssh2_userauth_keyboard_interactive(LIBSSH2_SESSION *session, const char *user .SH DESCRIPTION \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. @@ -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. .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_userauth_list.3 b/docs/libssh2_userauth_list.3 index 3ea34364..080745d9 100644 --- a/docs/libssh2_userauth_list.3 +++ b/docs/libssh2_userauth_list.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" .SH NAME @@ -11,7 +11,7 @@ libssh2_userauth_list(LIBSSH2_SESSION *session, const char *username, unsigned i .SH DESCRIPTION \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 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 .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_userauth_password_ex.3 b/docs/libssh2_userauth_password_ex.3 index 5b047e09..79a471f6 100644 --- a/docs/libssh2_userauth_password_ex.3 +++ b/docs/libssh2_userauth_password_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" .SH NAME @@ -14,7 +14,7 @@ libssh2_userauth_password(LIBSSH2_SESSION *session, const char *username, const .SH DESCRIPTION \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. @@ -47,4 +47,4 @@ LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se. \fILIBSSH2_ERROR_PASSWORD_EXPIRED\fP - .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3) diff --git a/docs/libssh2_userauth_publickey_fromfile_ex.3 b/docs/libssh2_userauth_publickey_fromfile_ex.3 index 19e53e80..0e21e92a 100644 --- a/docs/libssh2_userauth_publickey_fromfile_ex.3 +++ b/docs/libssh2_userauth_publickey_fromfile_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" .SH NAME @@ -14,7 +14,7 @@ libssh2_userauth_publickey_fromfile_ex(LIBSSH2_SESSION *session, const char *use .SH DESCRIPTION \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. @@ -48,4 +48,4 @@ combination was invalid, or the signature for the supplied public key was invalid. .SH SEE ALSO -.BR libssh2_session_init(3) +.BR libssh2_session_init_ex(3)