Searched defs:hints (Results 1 - 5 of 5) sorted by relevance

/httpd/modules/ssl/
H A Dssl_scache.c44 struct ap_socache_hints hints; local
56 memset(&hints, 0, sizeof hints);
57 hints.avg_obj_size = 1500;
58 hints.avg_id_len = 20;
59 hints.expiry_interval = 300;
62 "mod_ssl-stapling", &hints, s, p);
82 memset(&hints, 0, sizeof hints);
83 hints
[all...]
/httpd/modules/cache/
H A Dmod_socache_dc.c57 const struct ap_socache_hints *hints,
55 socache_dc_init(ap_socache_instance_t *ctx, const char *namespace, const struct ap_socache_hints *hints, server_rec *s, apr_pool_t *p) argument
H A Dmod_socache_dbm.c120 const struct ap_socache_hints *hints,
153 ctx->expiry_interval = (hints && hints->expiry_interval
154 ? hints->expiry_interval : apr_time_from_sec(30));
118 socache_dbm_init(ap_socache_instance_t *ctx, const char *namespace, const struct ap_socache_hints *hints, server_rec *s, apr_pool_t *p) argument
H A Dmod_socache_memcache.c83 const struct ap_socache_hints *hints,
81 socache_mc_init(ap_socache_instance_t *ctx, const char *namespace, const struct ap_socache_hints *hints, server_rec *s, apr_pool_t *p) argument
H A Dmod_socache_shmcb.c341 const struct ap_socache_hints *hints,
400 /* Select index size based on average object size hints, if given. */
401 avg_obj_size = hints && hints->avg_obj_size ? hints->avg_obj_size : 150;
402 avg_id_len = hints && hints->avg_id_len ? hints->avg_id_len : 30;
339 socache_shmcb_init(ap_socache_instance_t *ctx, const char *namespace, const struct ap_socache_hints *hints, server_rec *s, apr_pool_t *p) argument

Completed in 29 milliseconds