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

Function ap_update_mtime

server/request.c:2557–2562  ·  view source on GitHub ↗

* Function to set the r->mtime field to the specified value if it's later * than what's already there. */

Source from the content-addressed store, hash-verified

2555 * than what's already there.
2556 */
2557AP_DECLARE(void) ap_update_mtime(request_rec *r, apr_time_t dependency_mtime)
2558{
2559 if (r->mtime < dependency_mtime) {
2560 r->mtime = dependency_mtime;
2561 }
2562}
2563
2564/*
2565 * Is it the initial main request, which we only get *once* per HTTP request?

Callers 10

cache_accept_headersFunction · 0.85
file_cache_handlerFunction · 0.85
dav_fs_set_headersFunction · 0.85
set_vlist_validatorFunction · 0.85
dialup_handlerFunction · 0.85
index_directoryFunction · 0.85
reflector_handlerFunction · 0.85
includes_filterFunction · 0.85
default_handlerFunction · 0.85

Calls

no outgoing calls

Tested by 1

dialup_handlerFunction · 0.68