1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-14 04:18:54 +03:00

Doc: fix a few broken parameters

Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Aris Adamantiadis
2013-03-13 22:26:15 +01:00
committed by Andreas Schneider
parent 7e306a9ec6
commit 37cce98f7e
2 changed files with 2 additions and 3 deletions

View File

@@ -55,7 +55,6 @@ typedef struct ssh_bind_struct* ssh_bind;
* @brief Incoming connection callback. This callback is called when a ssh_bind * @brief Incoming connection callback. This callback is called when a ssh_bind
* has a new incoming connection. * has a new incoming connection.
* @param sshbind Current sshbind session handler * @param sshbind Current sshbind session handler
* @param message the actual message
* @param userdata Userdata to be passed to the callback function. * @param userdata Userdata to be passed to the callback function.
*/ */
typedef void (*ssh_bind_incoming_connection_callback) (ssh_bind sshbind, typedef void (*ssh_bind_incoming_connection_callback) (ssh_bind sshbind,

View File

@@ -527,8 +527,8 @@ static int ssh_server_kex_termination(void *s){
/** Set the acceptable authentication methods to be sent to /** Set the acceptable authentication methods to be sent to
* client. * client.
* @param[in] session the SSH server session * @param[in] session the SSH server session
* @param[in] Bitfield of authentication methods to be accepted, * @param[in] auth_methods Bitfield of authentication methods
* e.g. SSH_AUTH_METHOD_PUBLICKEY * to be accepted, e.g. SSH_AUTH_METHOD_PUBLICKEY
*/ */
void ssh_set_auth_methods(ssh_session session, int auth_methods){ void ssh_set_auth_methods(ssh_session session, int auth_methods){
/* accept only methods in range */ /* accept only methods in range */