1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/** \file server/client.h
* Defines all the client data and actions.
*/
/* This file is part of LCDd, the lcdproc server.
*
* This file is released under the GNU General Public License.
* Refer to the COPYING file distributed with this package.
*
* Copyright (c) 1999, William Ferrell, Selene Scriven
* 2002, Joris Robijn
*/
#include "menu.h"
#include "menuitem.h"
/* These headers are placed here on purpose ! (circular references) */
#ifndef CLIENT_H
#define CLIENT_H
#include "shared/LL.h"
#include <stdio.h>
#define CLIENT_NAME_SIZE 256
/** Possible states of a client. */
typedef enum _clientstate {
NEW, /**< Client did not yet send \c hello. */
ACTIVE, /**< Client sent \c hello, but not yet \c bye. */
GONE /**< Client sent \c bye. */
} ClientState;
/** The structure representing a client in the server. */
typedef struct Client {
char *name;
ClientState state;
int sock;
int backlight;
int heartbeat;
LinkedList *messages; /**< Messages that the client sent. */
LinkedList *screenlist; /**< List of client's screens. */
Menu *menu; /**< Menu hierarchy, if any */
} Client;
#include "screen.h"
/* When a new client connects, set up a new client data struct */
Client *client_create(int sock);
/* Destroys the client data */
int client_destroy(Client *c);
/* Close the socket */
void client_close_sock(Client *c);
/* Add message to the client's queue...*/
int client_add_message(Client *c, char *message);
/* Get message from queue */
char *client_get_message(Client *c);
/* Find a named screen for the client */
Screen *client_find_screen(Client *c, char *id);
int client_add_screen(Client *c, Screen *s);
int client_remove_screen(Client *c, Screen *s);
int client_screen_count(Client *c);
#endif
|