diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-06 12:29:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-06 12:29:53 +0000 |
commit | 9c701f3098f6d69abf20bd2e795d2812382f1e57 (patch) | |
tree | 9a9bf102b4e1703b06e9738d8d0afc5d149cc31a /src/modules.cpp | |
parent | 964e46857e87fadbcde15e85b5f3698f540116fa (diff) |
Added G/Z/Q/E line propogation
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2216 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r-- | src/modules.cpp | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 23091fc63..eed3adb1e 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -370,10 +370,20 @@ void Module::ProtoSendMode(void* opaque, int target_type, void* target, std::st void Module::OnWallops(userrec* user, std::string text) { }; void Module::OnChangeHost(userrec* user, std::string newhost) { }; void Module::OnChangeName(userrec* user, std::string gecos) { }; - -// server is a wrapper class that provides methods to all of the C-style -// exports in the core -// +void Module::OnAddGLine(long duration, userrec* source, std::string reason, std::string hostmask) { }; +void Module::OnAddZLine(long duration, userrec* source, std::string reason, std::string ipmask) { }; +void Module::OnAddKLine(long duration, userrec* source, std::string reason, std::string hostmask) { }; +void Module::OnAddQLine(long duration, userrec* source, std::string reason, std::string nickmask) { }; +void Module::OnAddELine(long duration, userrec* source, std::string reason, std::string hostmask) { }; +void Module::OnDelGLine(userrec* source, std::string hostmask) { }; +void Module::OnDelZLine(userrec* source, std::string ipmask) { }; +void Module::OnDelKLine(userrec* source, std::string hostmask) { }; +void Module::OnDelQLine(userrec* source, std::string nickmask) { }; +void Module::OnDelELine(userrec* source, std::string hostmask) { }; + +/* server is a wrapper class that provides methods to all of the C-style + * exports in the core + */ Server::Server() { |