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

Function ap_get_request_note

server/core.c:5192–5208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5190}
5191
5192AP_DECLARE(void **) ap_get_request_note(request_rec *r, apr_size_t note_num)
5193{
5194 core_request_config *req_cfg;
5195
5196 if (note_num >= num_request_notes) {
5197 return NULL;
5198 }
5199
5200 req_cfg = (core_request_config *)
5201 ap_get_core_module_config(r->request_config);
5202
5203 if (!req_cfg) {
5204 return NULL;
5205 }
5206
5207 return &(req_cfg->notes[note_num]);
5208}
5209
5210AP_DECLARE(apr_socket_t *) ap_get_conn_socket(conn_rec *c)
5211{

Callers 1

prep_walk_cacheFunction · 0.85

Calls 1

Tested by

no test coverage detected