libssh2-sys 0.3.1

Native bindings to the libssh2 library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Copyright (C) The libssh2 project and its contributors.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include "runner.h"

int test(LIBSSH2_SESSION *session)
{
    return test_auth_password(session, TEST_AUTH_SHOULDFAIL,
                              "I am the wrong username",
                              "my test password"); /* set in Dockerfile */
}