summaryrefslogtreecommitdiffstats
path: root/src/auth/passdb-template.h
blob: b681c80ede786e6f6c563701d9c192eb752a84a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PASSDB_TEMPLATE_H
#define PASSDB_TEMPLATE_H

#define STATIC_PASS_SCHEME "PLAIN"

struct passdb_template *passdb_template_build(pool_t pool, const char *args);
int passdb_template_export(struct passdb_template *tmpl,
			   struct auth_request *auth_request,
			   const char **error_r);
bool passdb_template_remove(struct passdb_template *tmpl,
			    const char *key, const char **value_r);
bool passdb_template_is_empty(struct passdb_template *tmpl);

const char *const *passdb_template_get_args(struct passdb_template *tmpl, unsigned int *count_r);

#endif