view src/auth/userdb-static.h @ 9415:2a48aa6e2bce HEAD

Added signature for changeset 609fe4268f40
author Timo Sirainen <tss@iki.fi>
date Mon, 05 Oct 2009 19:52:13 -0400
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