#include "config.h"#include "defines.h"#include <stdio.h>#include <stdlib.h>#include <string.h>#include <ctype.h>#include <time.h>#include <sys/types.h>#include "readline.h"#include "hashlib.h"#include "utils.h"#include "configparser.h"#include "cfcgi.h"#include "template.h"#include "clientlib.h"Go to the source code of this file.
Functions | |
| int | execute_filter (t_cf_hash *head, t_configuration *dc, t_configuration *vc, t_cf_template *begin, t_cf_template *end) |
| int | flt_basic_handle_posting (t_cf_hash *head, t_configuration *dc, t_configuration *vc, t_cl_thread *thr, t_cf_template *tpl) |
| int | flt_basic_set_target (t_cf_hash *head, t_configuration *dc, t_configuration *vc, t_message *msg, unsigned long long tid, int mode) |
| int | flt_basic_handle_command (t_configfile *cfile, t_conf_opt *opt, u_char **args, int argnum) |
| void | flt_basic_cleanup (void) |
Variables | |
| struct { | |
| u_char * FontColor | |
| u_char * FontSize | |
| u_char * FontFamily | |
| long AutoReload | |
| u_char * BaseTarget | |
| u_char * QuoteColorF | |
| u_char * QuoteColorB | |
| } | Cfg |
| t_conf_opt | flt_basic_config [] |
| t_handler_config | flt_basic_handlers [] |
| t_module_config | flt_basic |
Definition in file flt_basic.c.
|
|
Initial value: {
flt_basic_config,
flt_basic_handlers,
NULL,
NULL,
NULL,
flt_basic_cleanup
}
Definition at line 204 of file flt_basic.c. |
|
|
Initial value: {
{ "FontColor", flt_basic_handle_command, NULL },
{ "FontSize", flt_basic_handle_command, NULL },
{ "FontFamily", flt_basic_handle_command, NULL },
{ "AutoReload", flt_basic_handle_command, NULL },
{ "BaseTarget", flt_basic_handle_command, NULL },
{ "QuoteColor", flt_basic_handle_command, NULL },
{ NULL, NULL, NULL }
}
Definition at line 187 of file flt_basic.c. |
|
|
Initial value: {
{ VIEW_INIT_HANDLER, execute_filter },
{ POSTING_HANDLER, flt_basic_handle_posting },
{ VIEW_LIST_HANDLER, flt_basic_set_target },
{ 0, NULL }
}
Definition at line 197 of file flt_basic.c. |
1.3.5