aboutsummaryrefslogtreecommitdiffstats
path: root/apps/clients.c
blob: 234c0ed5dbe390f618130747183a43034381ee27 (plain)
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
/*
 * clients.c:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

static char rcsid[] = "$Id$";

/*
 * $Log$
 * Revision 1.1  2008/02/13 18:05:06  james
 * *** empty log message ***
 *
 */

#include <sympathy.h>
#include "clients.h"


void clients_output (Clients *c, void *_buf, int len)
{

}

Clients *clients_new(void)
{



return NULL;
}

void clients_pre_select (Clients *c, fd_set *rfds, fd_set *wfds)
{


}

void clients_post_select(Clients *c,Context *ctx, fd_set *rfds, fd_set *wfds)
{


}

Client * clients_new_client(Clients *c,Socket *s,Context *ctx)
{

ipc_msg_send_debug(s,"fishsoup");
socket_free(s);

return NULL;
}

void clients_shutdown(Clients *c)
{



}