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

/httpd/modules/ssl/
H A Dssl_ct_sct.c92 apr_size_t len, cert_chain *cc,
183 if (cc) {
189 /* See certificate-transparency/src/proto/serializer.cc,
199 der_length = i2d_X509(cc->leaf, NULL);
233 der_length = i2d_X509(cc->leaf, &der_buf);
90 sct_parse(const char *source, server_rec *s, const unsigned char *sct, apr_size_t len, cert_chain *cc, sct_fields_t *fields) argument
H A Dmod_ssl_ct.c1558 cert_chain *cc = apr_pcalloc(p, sizeof(cert_chain)); local
1561 cc->cert_arr = apr_array_make(p, 4, sizeof(X509 *));
1564 X509 **spot = apr_array_push(cc->cert_arr);
1567 cc->leaf = *spot;
1571 return cc;
1574 static void cert_chain_free(cert_chain *cc) argument
1576 X509 **elts = (X509 **)cc->cert_arr->elts;
1579 for (i = 0; i < cc->cert_arr->nelts; i++) {
1588 static const char *gen_key(conn_rec *c, cert_chain *cc, argument
1595 fp = get_cert_fingerprint(c->pool, cc
1666 validate_server_data(apr_pool_t *p, conn_rec *c, cert_chain *cc, ct_conn_config *conncfg, ct_server_config *sconf) argument
1826 save_server_data(conn_rec *c, cert_chain *cc, ct_conn_config *conncfg, const char *key) argument
[all...]
/httpd/modules/cache/
H A Dcache_util.c978 int ap_cache_control(request_rec *r, cache_control_t *cc, argument
983 if (cc->parsed) {
984 return cc->cache_control || cc->pragma;
987 cc->parsed = 1;
988 cc->max_age_value = -1;
989 cc->max_stale_value = -1;
990 cc->min_fresh_value = -1;
991 cc->s_maxage_value = -1;
999 cc
[all...]

Completed in 451 milliseconds