view src/auth/passdb-template.h @ 15187:02451e967a06

Renamed network.[ch] to net.[ch]. The function prefixes already started with net_ instead of network_. And icecap wants to use network.h for other purpose. :)
author Timo Sirainen <tss@iki.fi>
date Wed, 03 Oct 2012 18:17:26 +0300
parents 60f3d0b8900d
children e4ba07869ce4
line wrap: on
line source

#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);
void passdb_template_export(struct passdb_template *tmpl,
			    struct auth_request *auth_request);
bool passdb_template_remove(struct passdb_template *tmpl,
			    const char *key, const char **value_r);

#endif