diff options
| author | 2009-09-02 00:48:23 +0000 | |
|---|---|---|
| committer | 2009-09-02 00:48:23 +0000 | |
| commit | c4cb1f9477b1fbf8662bedb1c36f84ff6f87e1f3 (patch) | |
| tree | b2470d6e00d446f161b42523c177d2109059e7fa /src/modules.cpp | |
| parent | Add irc::sockets::satouser for user-readable IP/port pairs (diff) | |
Change OnHookUserIO to OnHookIO, making it usable for more than User* and less picky on string matching
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11628 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 ad7efdb06..701b76ae2 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -196,7 +196,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::OnHookIO(EventHandler*, ListenSocketBase*) { } bool Module::OnHostCycle(User* user) { return false; } ModuleManager::ModuleManager(InspIRCd* Ins) : ModCount(0), Instance(Ins) |
