ssh_userauth_password method

int ssh_userauth_password(
  1. ssh_session session,
  2. Pointer<Int8> username,
  3. Pointer<Int8> password
)

Implementation

int ssh_userauth_password(
  ssh_session session,
  ffi.Pointer<ffi.Int8> username,
  ffi.Pointer<ffi.Int8> password,
) {
  return _ssh_userauth_password(
    session,
    username,
    password,
  );
}