diff options
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() { |