diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/command_parse.h | 4 | ||||
-rw-r--r-- | include/ctables.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/command_parse.h b/include/command_parse.h index 2c3605613..4f8b80000 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -201,6 +201,10 @@ class CoreExport CommandParser : public classbase * stdout then exit with EXIT_STATUS_HANDLER. */ void SetupCommandTable(userrec* user); + + /** Translate nicknames in a string into UIDs, based on the TranslationType given. + */ + int TranslateUIDs(TranslateType to, const std::string &source, std::string &dest); }; /** Command handler class for the RELOAD command. diff --git a/include/ctables.h b/include/ctables.h index c7ccada09..a1f05a3a8 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -38,7 +38,8 @@ 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_NICKLIST /* Comma seperated nickname list, translate to UUIDs */ + TR_NICKLIST, /* Comma seperated nickname list, translate to UUIDs */ + TR_SPACENICKLIST /* Space seperated nickname list, translate to UUIDs */ }; /** For commands which should not be replicated to other |