libssh2_userauth_password_ex (3) Linux Manual Page
NAME libssh2_userauth_password_ex – authenticate a session with username and password SYNOPSIS #include <libssh2.h> int libssh2_userauth_password_ex(LIBSSH2_SESSION *session, const char *username, unsigned int username_len, const char *password, unsigned int password_len, LIBSSH2_PASSWD_CHANGEREQ_FUNC((*passwd_change_cb))); #define libssh2_userauth_password(session, username, password) \ libssh2_userauth_password_ex((session), (username), \ strlen(username), \ (password), strlen(password), NULL) DESCRIPTION session – Session instance as returned by libssh2_session_init_ex(3) username – Name of…
