| 3066 | } |
| 3067 | |
| 3068 | PROXY_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 | |
| 3082 | PROXY_DECLARE(int) ap_proxy_conn_is_https(conn_rec *c) |
| 3083 | { |
no test coverage detected