aboutsummaryrefslogtreecommitdiff
path: root/src/ClientGlobal.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-16 22:56:52 +0100
committerMax Kellermann <max@duempel.org>2013-01-16 22:56:52 +0100
commit1998633739b027b97ff89f92825512db91dca8f9 (patch)
treecc34205fb648273a517cc803c7ceb09f61affb1e /src/ClientGlobal.cxx
parent0194217f9d35ec2bc6e5d1ff710cf4943737d0da (diff)
ClientGlobal: move client_close_all() to ClientList.cxx
Diffstat (limited to 'src/ClientGlobal.cxx')
-rw-r--r--src/ClientGlobal.cxx13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/ClientGlobal.cxx b/src/ClientGlobal.cxx
index 47179b53..2ce2d383 100644
--- a/src/ClientGlobal.cxx
+++ b/src/ClientGlobal.cxx
@@ -53,20 +53,9 @@ void client_manager_init(void)
* 1024;
}
-static void client_close_all(void)
-{
- while (!client_list_is_empty()) {
- Client *client = client_list_get_first();
-
- client->Close();
- }
-
- assert(client_list_is_empty());
-}
-
void client_manager_deinit(void)
{
- client_close_all();
+ client_list_close_all();
client_max_connections = 0;
}