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

Function apply_server_config

server/protocol.c:1413–1421  ·  view source on GitHub ↗

Apply the server's timeout/config to the connection/request. */

Source from the content-addressed store, hash-verified

1411
1412/* Apply the server's timeout/config to the connection/request. */
1413static 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
1423request_rec *ap_read_request(conn_rec *conn)
1424{

Callers 1

ap_read_requestFunction · 0.85

Calls 1

ap_get_conn_socketFunction · 0.85

Tested by

no test coverage detected