MCPcopy Create free account
hub / github.com/apache/httpd / add_log_id

Function add_log_id

server/log.c:933–945  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

931}
932
933static void add_log_id(const conn_rec *c, const request_rec *r)
934{
935 const char **id;
936 /* need to cast const away */
937 if (r) {
938 id = &((request_rec *)r)->log_id;
939 }
940 else {
941 id = &((conn_rec *)c)->log_id;
942 }
943
944 ap_run_generate_log_id(c, r, id);
945}
946
947AP_DECLARE(void) ap_register_log_hooks(apr_pool_t *p)
948{

Callers 1

log_error_coreFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected