mech-login.c revision 462b8c71015b2483cff3c59fa3668246dc72dfce
/*
* LOGIN authentication mechanism.
*
* Copyright (c) 2004 Andrey Panin <pazke@donpac.ru>
*
* This software is released under the MIT license.
*/
#include "common.h"
#include "mech.h"
#include "passdb.h"
#include "safe-memset.h"
#include "plain-common.h"
static void
{
static const char prompt2[] = "Password:";
return;
}
} else {
}
}
static void
{
static const char prompt1[] = "Username:";
if (data_size == 0) {
} else {
}
}
static struct auth_request *mech_login_auth_new(void)
{
struct auth_request *request;
return request;
}
const struct mech_module mech_login = {
"LOGIN",
};