chiark / gitweb /
234c0ed5dbe390f618130747183a43034381ee27
[sympathy.git] / apps / clients.c
1 /*
2  * clients.c:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 static char rcsid[] = "$Id$";
10
11 /*
12  * $Log$
13  * Revision 1.1  2008/02/13 18:05:06  james
14  * *** empty log message ***
15  *
16  */
17
18 #include <sympathy.h>
19 #include "clients.h"
20
21
22 void clients_output (Clients *c, void *_buf, int len)
23 {
24
25 }
26
27 Clients *clients_new(void)
28 {
29
30
31
32 return NULL;
33 }
34
35 void clients_pre_select (Clients *c, fd_set *rfds, fd_set *wfds)
36 {
37
38
39 }
40
41 void clients_post_select(Clients *c,Context *ctx, fd_set *rfds, fd_set *wfds)
42 {
43
44
45 }
46
47 Client * clients_new_client(Clients *c,Socket *s,Context *ctx)
48 {
49
50 ipc_msg_send_debug(s,"fishsoup");
51 socket_free(s);
52
53 return NULL;
54 }
55
56 void clients_shutdown(Clients *c)
57 {
58
59
60
61 }