push
[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_client.h"
22 #include "struct_auth.h"
23 #include "ircd_config.h"
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <stdarg.h>
28 #define CLIENT_MAXLEN 512
29
30 struct Client *client_connected(struct Auth *auth) {
31     struct Client *client = calloc(1, sizeof(*client));
32         client->conn = auth->conn;
33         
34         client_printf(client, "Hi");
35         
36     return client;
37 }
38
39 void client_printf(struct Client *client, const char *text, ...) {
40     va_list arg_list;
41         char sendBuf[CLIENT_MAXLEN];
42         int pos;
43         sendBuf[0] = '\0';
44         va_start(arg_list, text);
45         pos = vsnprintf(sendBuf, CLIENT_MAXLEN - 2, text, arg_list);
46         va_end(arg_list);
47         if (pos < 0 || pos > (CLIENT_MAXLEN - 2)) pos = CLIENT_MAXLEN - 2;
48         sendBuf[pos] = '\n';
49     sendBuf[pos+1] = '\0';
50         socket_send(client->conn, sendBuf, pos+1);
51 }
52
53 void client_exit(struct Client *client, char *reason) {
54         if(client->conn) {
55                 
56         }
57         
58 }