Merge remote-tracking branch 'IOMultiplexer/v2'
[NextIRCd.git] / src / ircd_client.c
1 /* ircd_client.c - NextIRCd
2  * Copyright (C) 2012-2013  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17
18 #include "ircd_client.h"
19 #include "ircd_sock.h"
20 #include "struct_connection.h"
21 #include "struct_auth.h"
22 #include "ircd_config.h"
23 #include "ircd_auth.h"
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <stdarg.h>
28 #define CLIENT_MAXLEN 512
29
30 void client_printf(struct Connection *conn, const char *text, ...) {
31     va_list arg_list;
32         char sendBuf[CLIENT_MAXLEN];
33         int pos;
34         sendBuf[0] = '\0';
35         va_start(arg_list, text);
36         pos = vsnprintf(sendBuf, CLIENT_MAXLEN - 2, text, arg_list);
37         va_end(arg_list);
38         if (pos < 0 || pos > (CLIENT_MAXLEN - 2)) pos = CLIENT_MAXLEN - 2;
39         sendBuf[pos] = '\n';
40     sendBuf[pos+1] = '\0';
41         socket_send(conn, sendBuf, pos+1);
42 }
43
44 void client_connected(struct Connection *conn) {
45     struct Auth *auth = auth_new(conn);
46         
47         auth_start_dnsreverse(auth);
48 }
49
50 void client_disconnected(struct Connection *conn) {
51     
52 }