| 511 | } |
| 512 | |
| 513 | static 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 | /* |
no test coverage detected