X-Git-Url: http://git.pk910.de/?p=NextIRCd.git;a=blobdiff_plain;f=src%2Fmain.c;h=b2c8ca4b7782096504562f89158d0fedbe00166c;hp=b8e0d6cccb6a5fdcaca926e200fb52c97aea921a;hb=02cdeb3fbf84ac31949032ec23169d3cb048a16d;hpb=8ba4de3b3b5be1d229df13678b912f6ce3a6cf07 diff --git a/src/main.c b/src/main.c index b8e0d6c..b2c8ca4 100644 --- a/src/main.c +++ b/src/main.c @@ -21,10 +21,12 @@ static IOHANDLER_CALLBACK(io_callback); static IOHANDLER_LOG_BACKEND(io_log); +static struct IODescriptor *irc_iofd = NULL; + int main(int argc, char *argv[]) { iolog_backend = io_log; - iohandler_connect("pk910.de", 6667, 0, NULL, io_callback); + irc_iofd = iohandler_connect("pk910.de", 6667, 0, NULL, io_callback); struct IODescriptor *iofd; iofd = iohandler_add(0, IOTYPE_STDIN, NULL, io_callback); @@ -40,14 +42,22 @@ static IOHANDLER_CALLBACK(io_callback) { case IOEVENT_CONNECTED: printf("[connect]\n"); break; + case IOEVENT_CLOSED: + printf("[disconnect]\n"); + break; case IOEVENT_RECV: - printf("[in] %s\n", event->data.recv_str); + if(event->iofd->type == IOTYPE_STDIN) { + iohandler_printf(irc_iofd, "%s\n", event->data.recv_str); + printf("[out] %s\n", event->data.recv_str); + } else + printf("[in] %s\n", event->data.recv_str); break; + default: break; } } static IOHANDLER_LOG_BACKEND(io_log) { - printf("%s\n", line); + //printf("%s", line); }