From 7b7996c7bb4bd66f6262f4e721b6960d6b58b801 Mon Sep 17 00:00:00 2001 From: james <> Date: Wed, 13 Feb 2008 18:05:06 +0000 Subject: *** empty log message *** --- apps/clients.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 apps/clients.c (limited to 'apps/clients.c') diff --git a/apps/clients.c b/apps/clients.c new file mode 100644 index 0000000..234c0ed --- /dev/null +++ b/apps/clients.c @@ -0,0 +1,61 @@ +/* + * clients.c: + * + * Copyright (c) 2008 James McKenzie , + * All rights reserved. + * + */ + +static char rcsid[] = "$Id$"; + +/* + * $Log$ + * Revision 1.1 2008/02/13 18:05:06 james + * *** empty log message *** + * + */ + +#include +#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) +{ + + + +} -- cgit v1.2.3