summaryrefslogtreecommitdiff
path: root/include/xline.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-31 22:15:03 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-31 22:15:03 +0000
commit6236cf5891a008fbdc8d97af34bb5dc0d39ad2ea (patch)
treed648ad8cfbce79c7e09a9f78969ccbaeec99c5ae /include/xline.h
parent4e5bd889d93a389299ad73544012149055342d63 (diff)
Add XLine::SetCreateTime that removes gline_set_creation_time and friends
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8449 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/xline.h')
-rw-r--r--include/xline.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/xline.h b/include/xline.h
index e395c8fba..c6d85187a 100644
--- a/include/xline.h
+++ b/include/xline.h
@@ -62,6 +62,12 @@ class CoreExport XLine : public classbase
free(source);
}
+ virtual void SetCreateTime(time_t created)
+ {
+ set_time = created;
+ expiry = created + duration;
+ }
+
/** Returns true whether or not the given user is covered by this line.
*/
virtual bool Matches(User *u) = 0;