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

Function dump_vhost_config

server/vhost.c:513–531  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

511}
512
513static void dump_vhost_config(apr_file_t *f)
514{
515 ipaddr_chain *ic;
516 int i;
517
518 apr_file_printf(f, "VirtualHost configuration:\n");
519
520 /* non-wildcard servers */
521 for (i = 0; i < IPHASH_TABLE_SIZE; ++i) {
522 for (ic = iphash_table[i]; ic; ic = ic->next) {
523 dump_a_vhost(f, ic);
524 }
525 }
526
527 /* wildcard servers */
528 for (ic = default_list; ic; ic = ic->next) {
529 dump_a_vhost(f, ic);
530 }
531}
532
533
534/*

Callers 1

ap_fini_vhost_configFunction · 0.85

Calls 1

dump_a_vhostFunction · 0.85

Tested by

no test coverage detected