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

Function ssl_is_https

modules/arch/netware/mod_nw_ssl.c:948–953  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

946}
947
948static int ssl_is_https(conn_rec *c)
949{
950 secsocket_data *csd_data = (secsocket_data*)ap_get_module_config(c->conn_config, &nwssl_module);
951
952 return isSecureConn (c->base_server, c) || (csd_data && csd_data->is_secure);
953}
954
955/* This function must remain safe to use for a non-SSL connection. */
956char *ssl_var_lookup(apr_pool_t *p, server_rec *s, conn_rec *c, request_rec *r, char *var)

Callers

nothing calls this directly

Calls 2

ap_get_module_configFunction · 0.85
isSecureConnFunction · 0.85

Tested by

no test coverage detected