From: michael Date: Tue, 17 Mar 2015 19:10:17 +0000 (+0000) Subject: - Updated NEWS file X-Git-Tag: 1.1.0beta1~117 X-Git-Url: http://git.serene-ircd.net/?a=commitdiff_plain;h=0b9c765e5d098a3d09ee50efdbd285c44edde445;p=hopm.git - Updated NEWS file - Fixed previous commit to opercmd.c git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@5716 82007160-df01-0410-b94d-b575c5fd34c7 --- diff --git a/NEWS b/NEWS index 24c75c6..b667964 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +-- Noteworthy changes in version 1.0.4 (2015-03-17) +o) Log timestamp format is ISO8601 now +o) Added 'protocols' command which dumps a list of configured scanners + and their associated protocols/ports to a channel +o) Code cleanups and performance improvements + + -- Noteworthy changes in version 1.0.3 (2015-01-28) o) Fixed bug where HOPM wouldn't try re-connecting to the server in case the connection got lost. diff --git a/src/opercmd.c b/src/opercmd.c index 18a13d3..7da9634 100644 --- a/src/opercmd.c +++ b/src/opercmd.c @@ -50,14 +50,14 @@ static void cmd_protocols(char *, const struct ChannelConf *); static const struct OperCommandHash COMMAND_TABLE[] = { - { "CHECK", cmd_check }, - { "SCAN", cmd_check }, - { "STAT", cmd_stat }, - { "STATS", cmd_stat }, - { "STATUS", cmd_stat }, - { "FDSTAT", cmd_fdstat }, - { "PROTOCOLS", cmd_fdstat }, - { NULL, NULL } + { "CHECK", cmd_check }, + { "SCAN", cmd_check }, + { "STAT", cmd_stat }, + { "STATS", cmd_stat }, + { "STATUS", cmd_stat }, + { "FDSTAT", cmd_fdstat }, + { "PROTOCOLS", cmd_protocols }, + { NULL, NULL } };