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 struct player_control;
00031
00032 void client_manager_init(void);
00033 void client_manager_deinit(void);
00034
00035 void client_new(struct player_control *player_control,
00036 int fd, const struct sockaddr *sa, size_t sa_length, int uid);
00037
00038 G_GNUC_PURE
00039 bool client_is_expired(const struct client *client);
00040
00045 G_GNUC_PURE
00046 int client_get_uid(const struct client *client);
00047
00052 G_GNUC_PURE
00053 static inline bool
00054 client_is_local(const struct client *client)
00055 {
00056 return client_get_uid(client) > 0;
00057 }
00058
00059 G_GNUC_PURE
00060 unsigned client_get_permission(const struct client *client);
00061
00062 void client_set_permission(struct client *client, unsigned permission);
00063
00067 void client_puts(struct client *client, const char *s);
00068
00072 void client_vprintf(struct client *client, const char *fmt, va_list args);
00073
00077 G_GNUC_PRINTF(2, 3) void client_printf(struct client *client, const char *fmt, ...);
00078
00079 #endif