| 423 | } |
| 424 | |
| 425 | static h2_config *h2_config_sget(server_rec *s) |
| 426 | { |
| 427 | h2_config *cfg = (h2_config *)ap_get_module_config(s->module_config, |
| 428 | &http2_module); |
| 429 | ap_assert(cfg); |
| 430 | return cfg; |
| 431 | } |
| 432 | |
| 433 | static const h2_dir_config *h2_config_rget(request_rec *r) |
| 434 | { |
no test coverage detected