/* * 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) { }