output/httpd: don't include glib.h in header

This commit is contained in:
Max Kellermann
2013-10-02 12:20:36 +02:00
parent efc3a69dbf
commit 86316b1828
3 changed files with 6 additions and 4 deletions

View File

@@ -30,8 +30,6 @@
#include "thread/Mutex.hxx"
#include "event/ServerSocket.hxx"
#include <glib.h>
#include <forward_list>
struct config_param;
@@ -121,7 +119,7 @@ struct HttpdOutput final : private ServerSocket {
* The maximum and current number of clients connected
* at the same time.
*/
guint clients_max, clients_cnt;
unsigned clients_max, clients_cnt;
HttpdOutput(EventLoop &_loop);
~HttpdOutput();