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

Function ap_proxy_ssl_engine

modules/proxy/mod_proxy.c:3068–3080  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3066}
3067
3068PROXY_DECLARE(int) ap_proxy_ssl_engine(conn_rec *c,
3069 ap_conf_vector_t *per_dir_config,
3070 int enable)
3071{
3072 /*
3073 * if c == NULL just check if the optional function was imported
3074 * else run the optional function so ssl filters are inserted
3075 */
3076 if (c == NULL) {
3077 return ap_ssl_has_outgoing_handlers();
3078 }
3079 return ap_ssl_bind_outgoing(c, per_dir_config, enable) == OK;
3080}
3081
3082PROXY_DECLARE(int) ap_proxy_conn_is_https(conn_rec *c)
3083{

Callers 4

proxy_connect_handlerFunction · 0.85
proxy_ftp_handlerFunction · 0.85
connection_cleanupFunction · 0.85
proxy_connection_createFunction · 0.85

Calls 2

ap_ssl_bind_outgoingFunction · 0.85

Tested by

no test coverage detected