| 3090 | } |
| 3091 | |
| 3092 | AP_DECLARE(const char*) ap_get_server_protocol(server_rec* s) |
| 3093 | { |
| 3094 | core_server_config *conf = ap_get_core_module_config(s->module_config); |
| 3095 | return conf->protocol; |
| 3096 | } |
| 3097 | |
| 3098 | AP_DECLARE(void) ap_set_server_protocol(server_rec* s, const char* proto) |
| 3099 | { |
no test coverage detected