00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef MPD_CLIENT_H
00021 #define MPD_CLIENT_H
00022
00023 #include <glib.h>
00024 #include <stdbool.h>
00025 #include <stddef.h>
00026 #include <stdarg.h>
00027
00028 struct client;
00029 struct sockaddr;
00030
00031 void client_manager_init(void);
00032 void client_manager_deinit(void);
00033
00034 void client_new(int fd, const struct sockaddr *sa, size_t sa_length, int uid);
00035
00036 bool client_is_expired(const struct client *client);
00037
00042 int client_get_uid(const struct client *client);
00043
00044 unsigned client_get_permission(const struct client *client);
00045
00046 void client_set_permission(struct client *client, unsigned permission);
00047
00051 void client_puts(struct client *client, const char *s);
00052
00056 void client_vprintf(struct client *client, const char *fmt, va_list args);
00057
00061 G_GNUC_PRINTF(2, 3) void client_printf(struct client *client, const char *fmt, ...);
00062
00067 void client_manager_idle_add(unsigned flags);
00068
00074 bool client_idle_wait(struct client *client, unsigned flags);
00075
00076 #endif