view src/auth/userdb-static.h @ 9575:0a00dcc4f0ea HEAD

lib-storage: Allow shared namespace prefix to use %variable modifiers.
author Timo Sirainen <tss@iki.fi>
date Wed, 26 May 2010 17:07:51 +0100
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef USERDB_STATIC_H
#define USERDB_STATIC_H

struct userdb_static_template *
userdb_static_template_build(pool_t pool, const char *userdb_name,
			     const char *args);
bool userdb_static_template_isset(struct userdb_static_template *tmpl,
				  const char *key);
bool userdb_static_template_remove(struct userdb_static_template *tmpl,
				   const char *key, const char **value_r);
void userdb_static_template_export(struct userdb_static_template *tmpl,
				   struct auth_request *auth_request);

#endif