diff options
| author | 2005-12-06 12:29:53 +0000 | |
|---|---|---|
| committer | 2005-12-06 12:29:53 +0000 | |
| commit | 9c701f3098f6d69abf20bd2e795d2812382f1e57 (patch) | |
| tree | 9a9bf102b4e1703b06e9738d8d0afc5d149cc31a /src/modules.cpp | |
| parent | Fixed RFC-non-complaince of TOPIC and NAMES with +s channel (As reported by G... (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 | 16 |
1 files changed, 13 insertions, 3 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) { }; +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 is a wrapper class that provides methods to all of the C-style + * exports in the core + */ Server::Server() { |
