diff options
Diffstat (limited to 'config_cmds.h')
-rw-r--r-- | config_cmds.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config_cmds.h b/config_cmds.h index 192dec5..aba780e 100644 --- a/config_cmds.h +++ b/config_cmds.h @@ -4,6 +4,7 @@ #define CMD_T_SIMPLE 0 #define CMD_T_RPC 1 #define CMD_T_LUA 2 +#define CMD_T_SO 3 typedef struct single_cmd_def { @@ -43,7 +44,7 @@ single_cmd_def confgi_cmd_list[] = {CMD_T_RPC,"TODO",cmd_todo}, //command that going go to lua - {CMD_T_LUA,"LUA",cmd_lua}, + {CMD_T_LUA,"LUA",cmd_lua}, {CMD_T_LUA,"@", cmd_lua} {0,NULL,NULL} |