| 2810 | } |
| 2811 | |
| 2812 | static void ap_add_per_proxy_conf(server_rec *s, ap_conf_vector_t *dir_config) |
| 2813 | { |
| 2814 | proxy_server_conf *sconf = ap_get_module_config(s->module_config, |
| 2815 | &proxy_module); |
| 2816 | void **new_space = (void **)apr_array_push(sconf->sec_proxy); |
| 2817 | |
| 2818 | *new_space = dir_config; |
| 2819 | } |
| 2820 | |
| 2821 | static const char *proxysection(cmd_parms *cmd, void *mconfig, const char *arg) |
| 2822 | { |
no test coverage detected