aboutsummaryrefslogtreecommitdiffstats
path: root/config_cmds.h
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2017-05-20 11:35:52 +0100
committerFreeArtMan <dos21h@gmail.com>2017-05-20 11:35:52 +0100
commitc03a145002445eaaa814e3f133c9a28f991bb860 (patch)
tree82e8998563ac414488c0b86f01776997fd790b6c /config_cmds.h
parentaa7eba595d41abc7342f886138b55e130b2b15a3 (diff)
downloadagni-c03a145002445eaaa814e3f133c9a28f991bb860.tar.gz
agni-c03a145002445eaaa814e3f133c9a28f991bb860.zip
Added new commands FIR-finite impulse response filter,RAND-fairly random number,RANDC-libc random numbder
Diffstat (limited to 'config_cmds.h')
-rw-r--r--config_cmds.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/config_cmds.h b/config_cmds.h
index 1e22d79..c206ca6 100644
--- a/config_cmds.h
+++ b/config_cmds.h
@@ -20,6 +20,9 @@ typedef struct single_cmd_def
#include "cmd_cookie.h"
#include "cmd_botu.h"
#include "cmd_fir1p.h"
+#include "cmd_rand.h"
+#include "cmd_rand_libc.h"
+#include "cmd_fir.h"
//some commands have aliases for compat with some developerslv bots
//nothing else comaptible will be added, as its not about "standarts"
@@ -36,6 +39,9 @@ single_cmd_def confgi_cmd_list[] =
{"COOKIE",cmd_cookie},
{"BOTU",cmd_botu}, {"!uptime",cmd_botu},
{"FIR1P",cmd_fir1p},
+ {"RAND",cmd_rand},
+ {"RANDC",cmd_rand_libc},
+ {"FIR",cmd_fir},
{NULL,NULL}
};