summaryrefslogtreecommitdiff
path: root/modules/operserv/session.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2016-12-01 09:25:53 -0500
committerAdam <Adam@anope.org>2016-12-01 09:25:53 -0500
commitca28f9cfcbff0fbdb2afe96f1427245f83db7c47 (patch)
treeac5de801a4db01a7cb689ec670537ad74c7c53e6 /modules/operserv/session.cpp
parent2f512281029fbf4f7ef9832e05804831ad2d9ba2 (diff)
Allow objects to opt out of gc, don't gc accounts with users logged in
Also store cached state with the field by using Serialize::Storage for field storage
Diffstat (limited to 'modules/operserv/session.cpp')
-rw-r--r--modules/operserv/session.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/modules/operserv/session.cpp b/modules/operserv/session.cpp
index 0390d9205..cdd230473 100644
--- a/modules/operserv/session.cpp
+++ b/modules/operserv/session.cpp
@@ -47,13 +47,12 @@ class ExceptionImpl : public Exception
{
friend class ExceptionType;
- Anope::string mask, who, reason;
- unsigned int limit = 0;
- time_t time = 0, expires = 0;
+ Serialize::Storage<Anope::string> mask, who, reason;
+ Serialize::Storage<unsigned int> limit;
+ Serialize::Storage<time_t> time, expires;
public:
- ExceptionImpl(Serialize::TypeBase *type) : Exception(type) { }
- ExceptionImpl(Serialize::TypeBase *type, Serialize::ID id) : Exception(type, id) { }
+ using Exception::Exception;
Anope::string GetMask() override;
void SetMask(const Anope::string &) override;