Apply the server's timeout/config to the connection/request. */
| 1411 | |
| 1412 | /* Apply the server's timeout/config to the connection/request. */ |
| 1413 | static void apply_server_config(request_rec *r) |
| 1414 | { |
| 1415 | apr_socket_t *csd; |
| 1416 | |
| 1417 | csd = ap_get_conn_socket(r->connection); |
| 1418 | apr_socket_timeout_set(csd, r->server->timeout); |
| 1419 | |
| 1420 | r->per_dir_config = r->server->lookup_defaults; |
| 1421 | } |
| 1422 | |
| 1423 | request_rec *ap_read_request(conn_rec *conn) |
| 1424 | { |
no test coverage detected