summaryrefslogtreecommitdiff
path: root/include/xline.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-31 22:16:42 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-31 22:16:42 +0000
commit5315db41ad4780f0185cf07d79660a645c738e25 (patch)
tree52dca6246c0180689861380e4d438f8cf5e223e5 /include/xline.h
parent6236cf5891a008fbdc8d97af34bb5dc0d39ad2ea (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 'include/xline.h')
-rw-r--r--include/xline.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/xline.h b/include/xline.h
index c6d85187a..5de773aaf 100644
--- a/include/xline.h
+++ b/include/xline.h
@@ -513,36 +513,6 @@ class CoreExport XLineManager
* @param results The string_list to receive the results
*/
void InvokeStats(const char type, int numeric, User* user, string_list &results);
-
- /** Handle /STATS E
- * @param user The username making the query
- * @param results The string_list to receive the results
- */
- void stats_e(User* user, string_list &results);
-
- /** Change creation time of a GLine
- * @param host The hostname to change
- * @param create_Time The new creation time
- */
- void gline_set_creation_time(const char* host, time_t create_time);
-
- /** Change creation time of a QLine
- * @param nick The nickmask to change
- * @param create_Time The new creation time
- */
- void qline_set_creation_time(const char* nick, time_t create_time);
-
- /** Change creation time of a ZLine
- * @param ip The ipmask to change
- * @param create_Time The new creation time
- */
- void zline_set_creation_time(const char* ip, time_t create_time);
-
- /** Change creation time of a ELine
- * @param host The hostname to change
- * @param create_Time The new creation time
- */
- void eline_set_creation_time(const char* host, time_t create_time);
};
class CoreExport GLineFactory : public XLineFactory