]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/ctables.h
Allow for skipping clone checking before DNS is complete.
[user/henk/code/inspircd.git] / include / ctables.h
index 2ccca0f7bf5b7b0479c89e6a995d9e152d4ecdb0..f6d7129375e0bfef3371164ce3d3eb8f93f20b50 100644 (file)
@@ -43,7 +43,6 @@ const char FLAG_SERVERONLY = 7; // technically anything nonzero below 'A' works
  */
 enum TranslateType
 {
-       TR_END,                 /* End of known parameters, everything after this is TR_TEXT */
        TR_TEXT,                /* Raw text, leave as-is */
        TR_NICK,                /* Nickname, translate to UUID for server->server */
        TR_CUSTOM               /* Custom translation handled by EncodeParameter/DecodeParameter */
@@ -119,10 +118,6 @@ class CoreExport Command : public ServiceProvider
         */
        unsigned long use_count;
 
-       /** used by /stats m
-        */
-       unsigned long total_bytes;
-
        /** True if the command is disabled to non-opers
         */
        bool disabled;
@@ -163,7 +158,7 @@ class CoreExport Command : public ServiceProvider
         */
        Command(Module* me, const std::string &cmd, int minpara = 0, int maxpara = 0) :
                ServiceProvider(me, cmd, SERVICE_COMMAND), flags_needed(0), min_params(minpara), max_params(maxpara),
-               use_count(0), total_bytes(0), disabled(false), works_before_reg(false), allow_empty_last_param(true),
+               use_count(0), disabled(false), works_before_reg(false), allow_empty_last_param(true),
                Penalty(1)
        {
        }