| 3049 | static APR_OPTIONAL_FN_TYPE(ssl_engine_set) *proxy_ssl_engine = NULL; |
| 3050 | |
| 3051 | PROXY_DECLARE(int) ap_proxy_ssl_enable(conn_rec *c) |
| 3052 | { |
| 3053 | /* |
| 3054 | * if c == NULL just check if the optional function was imported |
| 3055 | * else run the optional function so ssl filters are inserted |
| 3056 | */ |
| 3057 | if (c == NULL) { |
| 3058 | return ap_ssl_has_outgoing_handlers(); |
| 3059 | } |
| 3060 | return ap_ssl_bind_outgoing(c, NULL, 1) == OK; |
| 3061 | } |
| 3062 | |
| 3063 | PROXY_DECLARE(int) ap_proxy_ssl_disable(conn_rec *c) |
| 3064 | { |
no test coverage detected