added config parser & incoming connection handler
[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 "config.h"
23 #include "version.h"
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <stdarg.h>
28 #define CLIENT_MAXLEN 512
29
30 static 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);
42 }
43
44 void client_connected(struct Connection *conn) {
45     client_printf(conn, "NOTICE AUTH :*** NextIRCd v%d.%d (%s)", VERSION_NUMBER, patchlevel, revision);
46     
47     struct Auth *auth = calloc(1, sizeof(*auth));
48     auth->conn = conn;
49     conn->data.auth = auth;
50     
51     /* maybe do some stuff here? */
52 }
53
54 void client_disconnected(struct Connection *conn) {
55     
56 }
57
58 void client_recv(struct Connection *conn, char *line) {
59     
60 }