MCPcopy Create free account
hub / github.com/apache/httpd / module_request_hook_participate

Function module_request_hook_participate

modules/generators/mod_info.c:393–407  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

391}
392
393static void module_request_hook_participate(request_rec * r, module * modp)
394{
395 int i, comma = 0;
396
397 ap_rputs("<dt><strong>Request Phase Participation:</strong>\n", r);
398
399 for (i = 0; request_hooks[i].name; i++) {
400 module_participate(r, modp, &request_hooks[i], &comma);
401 }
402
403 if (!comma) {
404 ap_rputs("<tt> <em>none</em></tt>", r);
405 }
406 ap_rputs("</dt>\n", r);
407}
408
409static const char *find_more_info(server_rec * s, const char *module_name)
410{

Callers 1

display_infoFunction · 0.85

Calls 2

ap_rputsFunction · 0.85
module_participateFunction · 0.85

Tested by

no test coverage detected