aboutsummaryrefslogtreecommitdiff
path: root/src/Client.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-14 23:42:06 +0100
committerMax Kellermann <max@duempel.org>2013-01-15 12:15:33 +0100
commit39439b80f5d1574e67f337a047869cf067c396b7 (patch)
tree5e28e61d4895da86189d14cde9f1e238c18079a8 /src/Client.hxx
parent396480cf94fbeda581acb6a78c42c7ec610d04a4 (diff)
Client: rebase on the new BufferedSocket class
Diffstat (limited to 'src/Client.hxx')
-rw-r--r--src/Client.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Client.hxx b/src/Client.hxx
index 3ce323d8..bf2a2521 100644
--- a/src/Client.hxx
+++ b/src/Client.hxx
@@ -22,11 +22,11 @@
#include "gcc.h"
-#include <stdbool.h>
#include <stddef.h>
#include <stdarg.h>
struct sockaddr;
+class EventLoop;
struct Partition;
class Client;
@@ -34,7 +34,7 @@ void client_manager_init(void);
void client_manager_deinit(void);
void
-client_new(Partition &partition,
+client_new(EventLoop &loop, Partition &partition,
int fd, const struct sockaddr *sa, size_t sa_length, int uid);
/**