client: Do not leak idle clients on exit

This commit is contained in:
Kenny Levinsen 2020-08-31 22:44:02 +02:00
parent c9ce7c71aa
commit 5b8117f3d4
4 changed files with 11 additions and 1 deletions

View file

@ -13,6 +13,7 @@ struct server {
struct poller poller;
struct linked_list seats;
struct linked_list idle_clients;
};
int server_init(struct server *server);