diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-31 22:16:42 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-31 22:16:42 +0000 |
commit | 5315db41ad4780f0185cf07d79660a645c738e25 (patch) | |
tree | 52dca6246c0180689861380e4d438f8cf5e223e5 /src | |
parent | 6236cf5891a008fbdc8d97af34bb5dc0d39ad2ea (diff) |
There, i think all thats now left is matches_*line which we can do with two overloaded methods Matches(const char type, const std::string &pattern) and
Matches(const char type, User* u)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8450 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/xline.cpp | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index be5bf8588..f3a7b28b7 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -259,67 +259,6 @@ ELine* XLineManager::matches_exception(User* user) return NULL; } - -void XLineManager::gline_set_creation_time(const char* host, time_t create_time) -{ - /*for (std::vector<XLine*>::iterator i = glines.begin(); i != glines.end(); i++) - { - if (!strcasecmp(host,(*i)->hostmask)) - { - (*i)->set_time = create_time; - (*i)->expiry = create_time + (*i)->duration; - return; - } - }*/ - - return ; -} - -void XLineManager::eline_set_creation_time(const char* host, time_t create_time) -{ - /*for (std::vector<ELine*>::iterator i = elines.begin(); i != elines.end(); i++) - { - if (!strcasecmp(host,(*i)->hostmask)) - { - (*i)->set_time = create_time; - (*i)->expiry = create_time + (*i)->duration; - return; - } - }*/ - - return; -} - -void XLineManager::qline_set_creation_time(const char* nick, time_t create_time) -{ - /*for (std::vector<QLine*>::iterator i = qlines.begin(); i != qlines.end(); i++) - { - if (!strcasecmp(nick,(*i)->nick)) - { - (*i)->set_time = create_time; - (*i)->expiry = create_time + (*i)->duration; - return; - } - }*/ - - return; -} - -void XLineManager::zline_set_creation_time(const char* ip, time_t create_time) -{ - /*for (std::vector<ZLine*>::iterator i = zlines.begin(); i != zlines.end(); i++) - { - if (!strcasecmp(ip,(*i)->ipaddr)) - { - (*i)->set_time = create_time; - (*i)->expiry = create_time + (*i)->duration; - return; - } - }*/ - - return; -} - // returns a pointer to the reason if an ip address matches a zline, NULL if it didnt match ZLine* XLineManager::matches_zline(User *u) |