| 368 ServerConfiguration *scfg = cfgmgr_get_server_config(); |
368 ServerConfiguration *scfg = cfgmgr_get_server_config(); |
| 369 CxIterator i = cxListIterator(scfg->listeners); |
369 CxIterator i = cxListIterator(scfg->listeners); |
| 370 cx_foreach(HttpListener *, ls, i) { |
370 cx_foreach(HttpListener *, ls, i) { |
| 371 http_listener_destroy(ls); |
371 http_listener_destroy(ls); |
| 372 } |
372 } |
| 373 pool_destroy(scfg->pool); |
373 server_config_destroy(scfg); |
| 374 |
374 |
| 375 http_listener_global_shutdown(); |
375 http_listener_global_shutdown(); |
| 376 |
376 |
| 377 free(pwbuf); |
377 free(pwbuf); |
| 378 } |
378 } |