summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/commands.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-07-26 16:19:18 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-07-26 16:19:18 +0200
commitac7e37c8542159fa0efa48b43c9ab346762f1638 (patch)
tree8df332e38b9f2b1eb79159d19388de1f74a20e86 /src/modules/m_spanningtree/commands.h
parent70b835e89eff6fcc47403d7fd7b4782f993ecf21 (diff)
m_spanningtree Set the TS of the uuid nick to the same value on collision
Diffstat (limited to 'src/modules/m_spanningtree/commands.h')
-rw-r--r--src/modules/m_spanningtree/commands.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/commands.h b/src/modules/m_spanningtree/commands.h
index 3047e7e60..c3ef2676c 100644
--- a/src/modules/m_spanningtree/commands.h
+++ b/src/modules/m_spanningtree/commands.h
@@ -295,6 +295,10 @@ class CommandPush : public ServerCommand
class CommandSave : public ServerCommand
{
public:
+ /** Timestamp of the uuid nick of all users who collided and got their nick changed to uuid
+ */
+ static const time_t SavedTimestamp = 100;
+
CommandSave(Module* Creator) : ServerCommand(Creator, "SAVE", 2) { }
CmdResult Handle(User* user, std::vector<std::string>& parameters);
};