Searched defs:maxage (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/session/
H A Dmod_session.h91 long maxage; /* if > 0, the maxage of the session, from member in struct:__anon308
107 long maxage; /* seconds until session expiry */ member in struct:__anon309
/httpd/modules/cache/
H A Dcache_util.c518 apr_int64_t age, maxage_req, maxage_cresp, maxage, smaxage, maxstale; local
550 * - RFC2616 14.9.3 Cache-Control: s-maxage the origin server specifies the
603 /* extract s-maxage */
613 * extract max-age from response, if both s-maxage and max-age, s-maxage
624 * if both maxage request and response, the smaller one takes priority
627 maxage = maxage_cresp;
630 maxage = maxage_req;
633 maxage = MIN(maxage_req, maxage_cresp);
665 /* override maxstale if must-revalidate, proxy-revalidate or s-maxage */
[all...]
/httpd/modules/test/
H A Dmod_policy.c95 apr_int64_t maxage; member in struct:policy_conf
625 * If the effective maxage of the request is less than the parameter provided,
628 * - If Cache-Control: s-maxage is less than the limit
629 * - If Cache-Control: maxage is less than the limit
631 * - If none of the above, reject the request, as maxage is heuristic
633 * As soon as a test passes, we stop, as HTTP maxage handling follows a given
634 * set of priorities (s-maxage beats maxage, maxage beats Expires).
682 if (!strncmp(token, "s-maxage",
1150 set_maxage(cmd_parms *cmd, void *dconf, const char *action, const char *maxage) argument
[all...]

Completed in 2894 milliseconds