|
Apache HTTPD
|
Classes | |
| struct | ap_log_handler |
Typedefs | |
| typedef const char * | ap_log_handler_fn_t(request_rec *r, char *a) |
| typedef void * | ap_log_writer_init(apr_pool_t *p, server_rec *s, const char *name) |
| typedef apr_status_t | ap_log_writer(request_rec *r, void *handle, const char **portions, int *lengths, int nelts, apr_size_t len) |
| typedef struct ap_log_handler | ap_log_handler |
| typedef void() | apr_OFN_ap_register_log_handler_t(apr_pool_t *p, char *tag, ap_log_handler_fn_t *func, int def) |
| typedef ap_log_writer_init *() | apr_OFN_ap_log_set_writer_init_t(ap_log_writer_init *func) |
| typedef ap_log_writer *() | apr_OFN_ap_log_set_writer_t(ap_log_writer *func) |
callback function prototype for a external log handler
Definition at line 36 of file mod_log_config.h.
| typedef apr_status_t ap_log_writer(request_rec *r, void *handle, const char **portions, int *lengths, int nelts, apr_size_t len) |
callback which gets called where there is a log line to write.
Definition at line 46 of file mod_log_config.h.
| typedef void * ap_log_writer_init(apr_pool_t *p, server_rec *s, const char *name) |
callback function prototype for external writer initialization.
Definition at line 41 of file mod_log_config.h.
| typedef ap_log_writer_init *() apr_OFN_ap_log_set_writer_init_t(ap_log_writer_init *func) |
you will need to set your init handler BEFORE the open_logs in mod_log_config gets executed
Definition at line 66 of file mod_log_config.h.
| typedef ap_log_writer *() apr_OFN_ap_log_set_writer_t(ap_log_writer *func) |
you should probably set the writer at the same time (ie..before open_logs)
Definition at line 70 of file mod_log_config.h.
| typedef void() apr_OFN_ap_register_log_handler_t(apr_pool_t *p, char *tag, ap_log_handler_fn_t *func, int def) |
Definition at line 61 of file mod_log_config.h.