2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * @defgroup filter filter
28 #include "controller.h"
30 typedef struct filter_t filter_t
;
33 * Constructor function for a filter
35 * @param context session specific context
36 * @param param user supplied param
38 typedef filter_t
*(*filter_constructor_t
)(context_t
* context
, void *param
);
41 * Filter interface, to be implemented by users filters.
46 * Called before the controller handles the request
48 * @param request HTTP request
49 * @param controller selected controller, before execution
50 * @return TRUE to continue request handling
52 bool (*run
)(filter_t
*this, request_t
*request
, controller_t
*controller
);
55 * Destroy the filter instance.
57 void (*destroy
) (filter_t
*this);
60 #endif /* FILTER_H_ @} */