| 2838 | } |
| 2839 | |
| 2840 | PROXY_DECLARE(int) ap_proxy_release_connection(const char *proxy_function, |
| 2841 | proxy_conn_rec *conn, |
| 2842 | server_rec *s) |
| 2843 | { |
| 2844 | ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO(00943) |
| 2845 | "%s: has released connection for (%s:%d)", |
| 2846 | proxy_function, conn->worker->s->hostname_ex, |
| 2847 | (int)conn->worker->s->port); |
| 2848 | connection_cleanup(conn); |
| 2849 | |
| 2850 | return OK; |
| 2851 | } |
| 2852 | |
| 2853 | static APR_INLINE void proxy_address_inc(proxy_address *address) |
| 2854 | { |
no test coverage detected