mech-plain.c revision 345648b341f228bd7f0b89f8aa3ecb9c470d817e
/* Copyright (C) 2002 Timo Sirainen */
#include "common.h"
#include "hash.h"
#include "safe-memset.h"
#include "mech.h"
#include "passdb.h"
struct auth_request *request)
{
}
static int
struct auth_login_request_continue *request,
{
char *pass;
/* authorization ID \0 authentication ID \0 pass.
we'll ignore authorization ID for now. */
count = 0;
if (data[i] == '\0') {
if (++count == 1)
else {
i++;
break;
}
}
}
auth_request->realm++;
/* make sure it's cleared */
return TRUE;
}
static void
{
}
static struct auth_request *
{
struct auth_request *auth_request;
struct auth_login_reply reply;
/* initialize reply */
return auth_request;
}
struct mech_module mech_plain = {
};