[IOMultiplexerV2] alpha
[NextIRCd.git] / src / IOHandler_test / socket / iotest.c
1 /* main.c - IOMultiplexer
2  * Copyright (C) 2012  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 <stdio.h>
19 #include "../../IOHandler/IOHandler.h"
20 #include "../../IOHandler/IOSockets.h"
21 #include "../../IOHandler/IOLog.h"
22
23 static IOSOCKET_CALLBACK(io_callback);
24 static IOLOG_CALLBACK(io_log);
25
26 static struct IOSocket *irc_iofd = NULL;
27
28 int main(int argc, char *argv[]) {
29         iohandler_init();
30         
31     iolog_register_callback(io_log);
32     
33     irc_iofd = iosocket_connect_flags("irc.nextirc.net", 6667, 0, NULL, io_callback, IOSOCKET_ADDR_IPV4);
34     irc_iofd->parse_delimiter = 1;
35         irc_iofd->delimiters[0] = '\n';
36         irc_iofd->delimiters[1] = '\r';
37         
38         iohandler_run();
39         
40         return 0;
41 }
42
43 static IOSOCKET_CALLBACK(io_callback) {
44     switch(event->type) {
45         case IOSOCKETEVENT_CONNECTED:
46             printf("[connect]\n");
47             break;
48         case IOSOCKETEVENT_CLOSED:
49             printf("[disconnect]\n");
50             break;
51         case IOSOCKETEVENT_RECV:
52             printf("[in] %s\n", event->data.recv_str);
53             break;
54         
55         default:
56             break;
57     }
58 }
59
60 static IOLOG_CALLBACK(io_log) {
61     //printf("%s", line);
62 }