| 5190 | } |
| 5191 | |
| 5192 | AP_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 | |
| 5210 | AP_DECLARE(apr_socket_t *) ap_get_conn_socket(conn_rec *c) |
| 5211 | { |
no test coverage detected