X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fircd_client.h;h=4a726af3a6c35062e464de7af45823577a960830;hb=HEAD;hp=e0e07355936297d39e2042d817d911b22e3d37b4;hpb=1c8cbecb4836bafd86885d96cf59e204160927cb;p=NextIRCd.git diff --git a/src/ircd_client.h b/src/ircd_client.h index e0e0735..4a726af 100644 --- a/src/ircd_client.h +++ b/src/ircd_client.h @@ -18,13 +18,11 @@ #ifndef _ircd_client_h #define _ircd_client_h -struct Connection; - -/* -- called from ircd_sock.c */ -void client_connected(struct Connection *conn); -void client_disconnected(struct Connection *conn); -void client_recv(struct Connection *conn, char *line); -/* -- */ +struct Auth; +struct Client; +struct Client *client_connected(struct Auth *auth); +void client_printf(struct Client *client, const char *text, ...); +void client_exit(struct Client *client, char *reason); #endif