/* Copyright (c) 2017-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "dict.h"
#include "dict-private.h"
{
.dict = &dict_driver_fail,
};
{
.dict = &dict_driver_fail,
};
const char *uri ATTR_UNUSED,
{
*error_r = "Unsupported operation (dict does not support this feature)";
return -1;
}
{
}
{
}
const char **error_r)
{
*error_r = "Unsupported operation (dict does not support this feature)";
return -1;
}
static struct dict_iterate_context *
{
return &dict_iter_unsupported;
}
{
return FALSE;
}
const char **error_r)
{
*error_r = "Unsupported operation (dict does not support this feature)";
return -1;
}
{
return &dict_transaction_unsupported;
}
bool async ATTR_UNUSED,
void *context)
{
.error = "Unsupported operation (dict does not support this feature)"
};
}
{
}
{
}
const char *key ATTR_UNUSED)
{
}
{
}
{
return TRUE;
}
{
}
.name = "fail",
.v = {
.init = dict_fail_init,
.wait = dict_fail_wait,
.set = dict_fail_set,
.unset = dict_fail_unset,
.lookup_async = NULL,
},
};