| 1570 | } |
| 1571 | |
| 1572 | AP_DECLARE(void) ap_log_csdata_(const char *file, int line, int module_index, |
| 1573 | int level, const conn_rec *c, const server_rec *s, |
| 1574 | const char *label, const void *data, |
| 1575 | apr_size_t len, unsigned int flags) |
| 1576 | { |
| 1577 | log_data_core(file, line, module_index, level, s, c, NULL, label, data, |
| 1578 | len, flags); |
| 1579 | } |
| 1580 | |
| 1581 | AP_DECLARE(void) ap_log_command_line(apr_pool_t *plog, server_rec *s) |
| 1582 | { |
nothing calls this directly
no test coverage detected