mech-external.c revision 66ce342948114d088de9d861e3d54f544a8a512e
/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "dsasl-client-private.h"
struct external_dsasl_client {
struct dsasl_client client;
bool output_sent;
};
static int
const char **error_r)
{
struct external_dsasl_client *client =
(struct external_dsasl_client *)_client;
if (!client->output_sent) {
if (input_len > 0) {
*error_r = "Server sent non-empty initial response";
return -1;
}
} else {
*error_r = "Server didn't finish authentication";
return -1;
}
return 0;
}
static int
const unsigned char **output_r, unsigned int *output_len_r,
const char **error_r)
{
struct external_dsasl_client *client =
(struct external_dsasl_client *)_client;
const char *username;
else
username = "";
return 0;
}
const struct dsasl_client_mech dsasl_client_mech_external = {
.name = "EXTERNAL",
.struct_size = sizeof(struct external_dsasl_client),
};