| 430 | } |
| 431 | |
| 432 | AP_DECLARE(void) ap_create_sb_handle(ap_sb_handle_t **new_sbh, apr_pool_t *p, |
| 433 | int child_num, int thread_num) |
| 434 | { |
| 435 | *new_sbh = (ap_sb_handle_t *)apr_palloc(p, sizeof(ap_sb_handle_t)); |
| 436 | ap_update_sb_handle(*new_sbh, child_num, thread_num); |
| 437 | } |
| 438 | |
| 439 | static void copy_request(char *rbuf, apr_size_t rbuflen, request_rec *r) |
| 440 | { |
no test coverage detected