aboutsummaryrefslogtreecommitdiff
path: root/libssh/auth.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2008-05-12 21:51:13 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2008-05-12 21:51:13 +0000
commit2cf6369113a23bbd7fa0e6b872d4a7c1ab68272b (patch)
treeea89f8e4c75c89a098c8089a1c462a8b2950cf5a /libssh/auth.c
parent6a80f1a049ae7a64fac5a0838c268eac3e6d0b8b (diff)
downloadlibssh-2cf6369113a23bbd7fa0e6b872d4a7c1ab68272b.tar.gz
libssh-2cf6369113a23bbd7fa0e6b872d4a7c1ab68272b.tar.xz
libssh-2cf6369113a23bbd7fa0e6b872d4a7c1ab68272b.zip
Doxygen changes
Modified the makefile so the ln -s never fails. git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@157 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'libssh/auth.c')
-rw-r--r--libssh/auth.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libssh/auth.c b/libssh/auth.c
index 0dba3da6..ff1e1ed3 100644
--- a/libssh/auth.c
+++ b/libssh/auth.c
@@ -25,8 +25,8 @@ MA 02111-1307, USA. */
#include <stdio.h>
#include <string.h>
-/** defgroup ssh_auth
- * \brief functions to authenticate
+/** \defgroup ssh_auth Authentication functions
+ * \brief functions to authenticate to servers
*/
/** \addtogroup ssh_auth
* @{ */
@@ -169,6 +169,7 @@ int ssh_userauth_none(SSH_SESSION *session,char *username){
* \param publickey a public key returned by publickey_from_file()
* \returns SSH_AUTH_ERROR : a serious error happened\n
* SSH_AUTH_DENIED : The server doesn't accept that public key as an authentication token. Try another key or another method\n
+ * SSH_AUTH_PARTIAL : You've been partially authenticated, you still have to use another method\n
* SSH_AUTH_SUCCESS : The public key is accepted, you want now to use ssh_userauth_pubkey()
* \see publickey_from_file()
* \see privatekey_from_file()