diff options
| author | 2008-03-24 16:03:39 +0000 | |
|---|---|---|
| committer | 2008-03-24 16:03:39 +0000 | |
| commit | 43d1577839df81d3746092f11ebd1280ca2f85c1 (patch) | |
| tree | 6014c07ec588186e6e64949542ce88387131abd6 /src/modules.cpp | |
| parent | Add stuff so that modules can hook users by altering a pointer in the User cl... (diff) | |
Port bindings for gnutls now bind via ip:port, rather than on all ports for that ip, fixes feature request for roadmap. NOTE, this still needs doing for the openssl module!
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9188 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 82dbea185..5ec74da7b 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -195,7 +195,7 @@ void Module::OnText(User*, void*, int, const std::string&, char, CUList&) { } void Module::OnRunTestSuite() { } void Module::OnNamesListItem(User*, User*, Channel*, std::string&, std::string&) { } int Module::OnNumeric(User*, unsigned int, const std::string&) { return 0; } -void Module::OnHookUserIO(User*) { } +void Module::OnHookUserIO(User*, const std::string&) { } ModuleManager::ModuleManager(InspIRCd* Ins) : ModCount(0), Instance(Ins) { |
