view src/lib-auth/auth-server-request.h @ 3863:55df57c028d4 HEAD

Added "bool" type and changed all ints that were used as booleans to bool.
author Timo Sirainen <tss@iki.fi>
date Fri, 13 Jan 2006 22:25:57 +0200
parents 0f31778d3c34
children e4eb71ae8e96
line wrap: on
line source

#ifndef __AUTH_SERVER_REQUEST_H
#define __AUTH_SERVER_REQUEST_H

bool auth_client_input_ok(struct auth_server_connection *conn,
			  const char *args);
bool auth_client_input_cont(struct auth_server_connection *conn,
			   const char *args);
bool auth_client_input_fail(struct auth_server_connection *conn,
			    const char *args);

void auth_server_requests_remove_all(struct auth_server_connection *conn);

#endif