| 5811 | } |
| 5812 | |
| 5813 | PROXY_DECLARE (const char *) ap_proxy_show_hcmethod(hcmethod_t method) |
| 5814 | { |
| 5815 | proxy_hcmethods_t *m = proxy_hcmethods; |
| 5816 | for (; m->name; m++) { |
| 5817 | if (m->method == method) { |
| 5818 | return m->name; |
| 5819 | } |
| 5820 | } |
| 5821 | return "???"; |
| 5822 | } |
| 5823 | |
| 5824 | void proxy_util_register_hooks(apr_pool_t *p) |
| 5825 | { |
no outgoing calls
no test coverage detected