]> git.cworth.org Git - ttt/blob - src/ttt-client.h
452b36fa0d73ec492a506f2a2fcac5b071e96b27
[ttt] / src / ttt-client.h
1 /* ttt-client.c - client handling code for tic-tac-toe game server
2  *
3  * Copyright © 2005 Carl Worth
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * Author: Carl Worth <cworth@cworth.org>
20  */
21
22 #include "ttt.h"
23
24 #include "ttt-server.h"
25
26 #ifndef _TTT_CLIENT_H_
27 #define _TTT_CLIENT_H_
28
29 #define TTT_CLIENT_BUF_SIZE 1024
30
31 typedef struct _ttt_client {
32     pthread_t thread;
33
34     ttt_server_t *server;
35     int socket;
36
37     int id;
38
39     char buf[TTT_CLIENT_BUF_SIZE];
40     char *buf_head;
41     char *buf_tail;
42
43     char *request;
44     int request_size;
45     int request_len;
46 } ttt_client_t;
47
48
49 /* Create a new ttt_client_t for the given server and given a
50  * connected socket, and assign it the given id.
51  *
52  * Returns: A new ttt_client_t. Call ttt_client_destroy when finished
53  * with it.
54  *
55  * Errors: If any error occurs, (such as out-of-memory), this function
56  * will not return.
57  */
58 ttt_client_t *
59 ttt_client_create (ttt_server_t *server, int socket, int id);
60
61 /* Destroy a client. */
62 void
63 ttt_client_destroy (ttt_client_t *client);
64
65 /* Perform a blocking read until a newline is encountered.
66  *
67  * Returns: A pointer to the string read, or NULL if EOF occurs. This
68  * string points to data internal to the client and can be overwritten
69  * by subsequent calls to this function.
70  *
71  * Errors: If any error (other than reading EOF) occurs, this function
72  * will not return.
73  */
74 char *
75 ttt_client_read_line (ttt_client_t *client);
76
77 /* Send a message to a client. */
78 void
79 ttt_client_send (ttt_client_t *client, const char *message);
80
81 #endif /* _TTT_CLIENT_H_ */