diff options
author | Max Kellermann <max@duempel.org> | 2013-01-14 23:42:06 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-15 12:15:33 +0100 |
commit | 39439b80f5d1574e67f337a047869cf067c396b7 (patch) | |
tree | 5e28e61d4895da86189d14cde9f1e238c18079a8 /src/Client.hxx | |
parent | 396480cf94fbeda581acb6a78c42c7ec610d04a4 (diff) | |
download | mpd-39439b80f5d1574e67f337a047869cf067c396b7.tar.gz mpd-39439b80f5d1574e67f337a047869cf067c396b7.tar.xz mpd-39439b80f5d1574e67f337a047869cf067c396b7.zip |
Client: rebase on the new BufferedSocket class
Diffstat (limited to '')
-rw-r--r-- | src/Client.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Client.hxx b/src/Client.hxx index 3ce323d80..bf2a2521f 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); /** |