| summaryrefslogtreecommitdiff | 
diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 10 | 
1 files changed, 10 insertions, 0 deletions
| @@ -33,6 +33,9 @@ static void print_help (const char runnable [const restrict static 1])        "   IRC_PORT:\tPort to use for the IRC connection.\n"        "\nOptions:\n"        "   -6, --ipv6:\tEnables IPv6.\n" +      "   -c, --print-chat:\tDisplays IRC conversations on stdout.\n" +      "   -i, --print-additional-info:\tDisplays received JH info messages on" +      " stdout.\n"        "   -u USERNAME, --username USERNAME:\tSets the IRC username.\n"        "   -r REALNAME, --realname REALNAME:\tSets the IRC realname.\n"        "   -p PASSWORD, --password PASSWORD:\tSets the IRC password.\n", @@ -178,6 +181,13 @@ static int event_handling_loop           return -1;        } + +      JH_meta_net_handle_reply +      ( +         socket, +         irc, +         params +      );     }     return 0; | 


