[IOMultiplexerV2] added more socket examples
[NextIRCd.git] / src / IOHandler_test / client_ssl / 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("test.pk910.de", 443, 1, NULL, io_callback);
34         
35         iohandler_run();
36         
37         return 0;
38 }
39
40 static IOSOCKET_CALLBACK(io_callback) {
41     switch(event->type) {
42         case IOSOCKETEVENT_CONNECTED:
43             printf("[connect]\n");
44             iosocket_printf(event->socket, "GET / HTTP/1.1\r\n");
45             iosocket_printf(event->socket, "Host: test.pk910.de\r\n");
46             iosocket_printf(event->socket, "\r\n");
47             break;
48         case IOSOCKETEVENT_CLOSED:
49             printf("[disconnect]\n");
50             break;
51         case IOSOCKETEVENT_RECV:
52                         {
53                                 struct IOSocketBuffer *recv_buf = event->data.recv_buf;
54                                 int i;
55                                 for(i = 0; i < recv_buf->bufpos; i++)
56                                         putchar(recv_buf->buffer[i]);
57                                 recv_buf->bufpos = 0;
58                                 printf("\n");
59             }
60             break;
61         
62         default:
63             break;
64     }
65 }
66
67 static IOLOG_CALLBACK(io_log) {
68         printf("%s", message);
69 }