/httpd/modules/session/ |
H A D | mod_session.h | 90 apr_time_t expiry; /* if > 0, the time of expiry of this session */ member in struct:__anon308 92 * which expiry is calculated */ 107 long maxage; /* seconds until session expiry */
|
H A D | mod_session.c | 25 #define SESSION_EXPIRY "expiry" 130 if (zz->expiry && zz->expiry < now) { 153 /* make sure the expiry and maxage are set, if present */ 155 if (!zz->expiry) { 156 zz->expiry = now + dconf->maxage * APR_USEC_PER_SEC; 192 if (z->expiry && z->expiry < now) { 199 /* reset the expiry back to maxage, if the expiry i 344 char *expiry = apr_psprintf(z->pool, "%" APR_INT64_T_FMT, z->expiry); local [all...] |
H A D | mod_session_dbd.c | 106 apr_int64_t expiry = (apr_int64_t) apr_time_now(); local 122 0, key, &expiry, NULL); 253 const char *newkey, const char *val, apr_int64_t expiry) 277 statement, val, &expiry, newkey, oldkey, NULL); 305 val, &expiry, newkey, NULL); 429 ret = dbd_save(r, oldkey, newkey, z->encoded, z->expiry); 461 ret = dbd_save(r, r->user, r->user, z->encoded, z->expiry); 252 dbd_save(request_rec * r, const char *oldkey, const char *newkey, const char *val, apr_int64_t expiry) argument
|
/httpd/modules/ssl/ |
H A D | ssl_scache.c | 114 apr_time_t expiry, SSL_SESSION *sess, 138 expiry, encoded, len, p); 113 ssl_scache_store(server_rec *s, UCHAR *id, int idlen, apr_time_t expiry, SSL_SESSION *sess, apr_pool_t *p) argument
|
H A D | ssl_util_stapling.c | 217 apr_time_t expiry; local 239 expiry = apr_time_from_sec(mctx->stapling_cache_timeout); 243 expiry = apr_time_from_sec(mctx->stapling_errcache_timeout); 246 expiry += apr_time_now(); 252 expiry, resp_der, stored_len, pool);
|
/httpd/modules/cache/ |
H A D | mod_socache_dc.c | 96 apr_time_t expiry, 102 * Were the API were thought out expiry - r->request_time is a good approximation 104 expiry -= apr_time_now(); 107 apr_time_msec(expiry))) { 94 socache_dc_store(ap_socache_instance_t *ctx, server_rec *s, const unsigned char *id, unsigned int idlen, apr_time_t expiry, unsigned char *der, unsigned int der_len, apr_pool_t *p) argument
|
H A D | mod_socache_dbm.c | 193 unsigned int idlen, apr_time_t expiry, 226 memcpy((char *)dbmval.dptr, &expiry, sizeof(apr_time_t)); 269 apr_time_t expiry; local 311 memcpy(&expiry, dbmval.dptr, sizeof(apr_time_t)); 318 if (expiry <= now) { 360 apr_time_t expiry; local 421 memcpy(&expiry, dbmval.dptr, sizeof(apr_time_t)); 422 if (expiry <= now) 457 "DBM socache expiry: " 524 apr_time_t expiry; local 191 socache_dbm_store(ap_socache_instance_t *ctx, server_rec *s, const unsigned char *id, unsigned int idlen, apr_time_t expiry, unsigned char *ucaData, unsigned int nData, apr_pool_t *pool) argument [all...] |
H A D | mod_socache_memcache.c | 197 apr_time_t expiry, 208 /* memcache needs time in seconds till expiry; fail if this is not 210 expiry -= apr_time_now(); 211 if (apr_time_sec(expiry) <= 0) { 215 apr_time_sec(expiry), 0); 195 socache_mc_store(ap_socache_instance_t *ctx, server_rec *s, const unsigned char *id, unsigned int idlen, apr_time_t expiry, unsigned char *ucaData, unsigned int nData, apr_pool_t *p) argument
|
H A D | mod_socache_shmcb.c | 259 apr_time_t expiry); 480 unsigned int idlen, apr_time_t expiry, 500 len_encoded, id, idlen, expiry)) { 637 ap_rprintf(r, "total (pre-expiry) entries scrolled out of the cache: " 754 apr_time_t expiry) 837 idx->expires = expiry; 478 socache_shmcb_store(ap_socache_instance_t *ctx, server_rec *s, const unsigned char *id, unsigned int idlen, apr_time_t expiry, unsigned char *encoded, unsigned int len_encoded, apr_pool_t *p) argument 750 shmcb_subcache_store(server_rec *s, SHMCBHeader *header, SHMCBSubcache *subcache, unsigned char *data, unsigned int data_len, const unsigned char *id, unsigned int id_len, apr_time_t expiry) argument
|
/httpd/modules/metadata/ |
H A D | mod_expires.c | 26 * configuration files or in .htaccess files so expiry semantics can 112 * The expiry time can be fine-tuned by adding several '<num> <type>' 146 * add per-file expiry and explicit expiry times - duplicates some 354 "a MIME type followed by an expiry date code"), 356 "an expiry date code"), 451 const char *expiry; local 469 expiry = apr_table_get(r->err_headers_out, "Expires"); 470 if (expiry != NULL) { 474 expiry [all...] |
/httpd/modules/aaa/ |
H A D | mod_authn_socache.c | 295 apr_time_t expiry; local 330 /* first build our key and determine expiry time */ 332 expiry = apr_time_now() + dcfg->timeout; 336 (unsigned char*)key, strlen(key), expiry,
|