| 162 | } |
| 163 | |
| 164 | static const char *set_script_timeout(cmd_parms *cmd, void *dummy, const char *arg) |
| 165 | { |
| 166 | cgi_dirconf *dc = dummy; |
| 167 | |
| 168 | if (ap_timeout_parameter_parse(arg, &dc->timeout, "s") != APR_SUCCESS) { |
| 169 | return "CGIScriptTimeout has wrong format"; |
| 170 | } |
| 171 | |
| 172 | return NULL; |
| 173 | } |
| 174 | |
| 175 | static const command_rec cgi_cmds[] = |
| 176 | { |
nothing calls this directly
no test coverage detected