Peter Powell
70be9c79d2
Move OnSync{Channel,Network,User} to ServerEventListener.
2017-12-03 13:58:10 +00:00
Peter Powell
91e0af0fc4
Add the override keyword in places that it is missing.
...
GCCs warnings for this are much better than Clangs.
2017-11-21 15:51:45 +00:00
Attila Molnar
3b51dfb1d6
Add events which are fired when a service is added or deleted.
2017-11-16 14:15:25 +00:00
Peter Powell
9eac41bf5a
Tweak the module flags in MODULES slightly.
...
Using unique letters for each flag makes it easier to read when
using fonts which have similar glyphs for upper and lower case
characters.
2017-10-21 22:03:43 +01:00
Peter Powell
ee7ac5aaed
Clean up OnCleanup.
...
- Switch to using ExtensionItem::ExtensibleType for the type instead
of TargetTypeFlags.
- Pass the extensible to OnCleanup as an Extensible pointer
instead of a void pointer.
- Call OnCleanup for memberships as well as channels and users.
- Rewrite event documentation to remove outdated references.
2017-10-18 12:54:51 +01:00
Peter Powell
a1bc06e8a0
Update a bunch of references to the old command modules.
2017-08-27 13:18:58 +01:00
Peter Powell
a62ae50007
Fix a bunch of Doxygen warnings.
2017-08-26 09:58:15 +01:00
Peter Powell
d1df2bce56
Add CXX11_OVERRIDE to overridden members that lack it.
...
This fixes a ton of warnings when building on compilers that
default to C++11 or newer.
2017-07-12 14:41:52 +01:00
Peter Powell
b8d85c6251
Update stuff for the new versioning system.
2016-09-02 22:13:22 +02:00
Attila Molnar
6c4a6b1753
Deduplicate mode unregistering code in ModuleManager::DoSafeUnload() and extract into a method
2016-08-29 14:33:25 +02:00
Attila Molnar
f9455b925d
Remove unused EventHandlerIter typedef
2016-08-29 14:30:41 +02:00
Attila Molnar
85456f0bd3
Remove virtual destructor of class Version
...
No classes inherit from it and it is only used as the return value from Module::GetVersion() which returns it by value
2016-08-11 10:58:21 +02:00
Attila Molnar
925afed1b9
Don't exit on rehash if the pid file cannot be written
2016-06-17 12:04:12 +02:00
Peter Powell
30bd7bb39f
Rename PURE_STATIC to INSPIRCD_STATIC.
2016-04-04 13:20:21 +01:00
Attila Molnar
725c954efb
Send WHO reply numerics with User::WriteNumeric(), pass Numeric::Numeric objects to the OnSendWhoLine hook
2016-02-26 15:59:20 +01:00
Attila Molnar
a5c00b1548
Return ModResult from the OnSendWhoLine hook
2016-02-26 15:40:22 +01:00
Attila Molnar
304b6dbbf5
Introduce Stats::Context, pass it to the OnStats hook and switch all code to it
2016-02-25 17:02:03 +01:00
Attila Molnar
da29af8cba
Convert WriteNumeric() calls to pass the parameters of the numeric as method parameters
2016-02-25 16:12:09 +01:00
Attila Molnar
fd87f9f073
Add minimum channel rank and exception list parameters to the OnUserInvite hook
2015-12-06 11:24:39 +01:00
Attila Molnar
860f5cbf1e
Merge branch 'master+serviceinit'
2015-12-02 13:30:24 +01:00
Attila Molnar
c290d09c45
Handle module reloading in core_reloadmodule entirely
2015-11-26 13:36:44 +01:00
Attila Molnar
a39bd397cd
Extract code that manipulates the ModuleManager::DataProviders map into methods
2015-11-23 12:46:59 +01:00
Attila Molnar
9b9326ff08
Expand module names in ServerConfig::ApplyModules()
2015-06-04 00:03:29 +02:00
Attila Molnar
7bb75e575b
Allow modules to be called as "foo" instead of "m_foo.so"
2015-05-20 15:02:24 +02:00
Attila Molnar
00c0409dd4
Remove support for non-unloadable (VF_STATIC) modules
...
No module we ship uses this flag and new modules should not use it either to make hotfixing possible
2015-05-12 23:42:20 +02:00
Attila Molnar
8f34594cb7
Move OnWhois* events to core_whois, add Whois::Context
...
Remove InspIRCd::SendWhoisLine()
2015-04-28 15:16:22 +02:00
Attila Molnar
8f5efbc7aa
Merge insp20
2015-04-20 17:40:12 +02:00
Attila Molnar
7bea24293a
Eliminate constant return value of the all events version of ModuleManager::SetPriority()
2015-02-15 17:58:47 +01:00
Attila Molnar
bfc1abbcad
Convert mods calling the old compat wrapper of ModuleManager::SetPriority() to use the current method, remove wrapper
2015-02-15 17:56:01 +01:00
Attila Molnar
9597d205e7
Remove I_BEGIN from enum Implementation
2015-02-15 17:50:41 +01:00
Attila Molnar
0204f2254d
Remove class Event and the OnEvent hook
2015-02-11 17:24:14 +01:00
Peter Powell
f5519a585f
Fix modules not being versioned on Windows.
2015-01-17 15:31:35 +00:00
Attila Molnar
ae10286658
Remove the unused OnGlobalOper hook
2015-01-10 14:30:41 +01:00
Peter Powell
6935ce2956
Avoid calling methods on NULL pointers wherever possible.
...
The trick we use to allow this is undefined behaviour and is not
liked by LLVM. We should stop using it but it has the potential to
break to many things for a minor release.
2014-10-13 06:18:14 +01:00
Attila Molnar
3eda212c2a
Migrate code from ModeParser into cmd_mode (core_user)
...
- Process() that takes a std::vector<std::string>
- DisplayCurrentModes()
- DisplayListModes()
2014-09-04 13:30:01 +02:00
Attila Molnar
5f03134983
Pass Modes::ChangeList references to the OnPreMode hook, make it modifiable
...
This gets rid of the duplicated mode parsing logic in m_namedmodes
2014-09-04 12:58:25 +02:00
Attila Molnar
8d066e557e
Pass the modes to the OnMode hook as a Modes::ChangeList, pass ModeProcessFlags too
2014-09-03 14:15:18 +02:00
Attila Molnar
a3d2b44757
Change allocation of InspIRCd::Modules to be physically part of the object containing it using fakederef
2014-06-24 12:16:57 +02:00
Attila Molnar
1442193c79
Change the type of the user parameter in the OnUserPreNick() hook from User to LocalUser
...
No remote users were passed to this hook before.
Remove needless IS_LOCAL() checks.
2014-06-20 16:20:19 +02:00
Peter Powell
e3bcf95ee9
Prefix all definitions in config.h to avoid potential collisions.
2014-05-23 14:13:51 +02:00
Attila Molnar
5b3bc00fb4
Document parameters and return value for the OnNamesListItem() hook
2014-04-20 14:12:59 +02:00
Attila Molnar
5ebb49de65
Change the OnNamesListItem() hook to return ModResult
...
Return MOD_RES_DENY to exclude the user from the NAMES list
2014-04-20 14:05:21 +02:00
Attila Molnar
b65fb065b5
Fix undefined symbol error on module load if compiled with Clang 3.4
...
Fixes issue #803 reported by @SaberUK
2014-04-19 17:10:01 +02:00
Attila Molnar
9e123ad121
Replace mode letter parameter of OnRawMode() with a ModeHandler*, remove pcnt
2014-02-21 14:18:49 +01:00
Attila Molnar
51b5f06c48
Return a Membership* from get_first_visible_channel() in cmd_who and pass that to modules
2014-02-14 12:00:06 +01:00
Attila Molnar
5b6ae9c542
Only compile the testsuite if INSPIRCD_ENABLE_TESTSUITE is defined
2014-02-07 18:21:01 +01:00
Attila Molnar
1db0e984be
Add Channel* parameter to OnSendWhoLine
2014-01-25 12:40:21 +01:00
Attila Molnar
932e8d13f8
Convert UserChanList to an intrusively linked list
2014-01-24 12:58:01 +01:00
Attila Molnar
99f79a4e5c
Split IOHook into IOHook and IOHookProvider
...
Create one IOHook instance for each hooked socket which contains all the
hook specific data and read/write/close functions, removing the need for
the "issl_session" array in SSL modules.
Register instances of the IOHookProvider class in the core and use them to
create specialized IOHook instances (OnConnect/OnAccept).
Remove the OnHookIO hook, add a dynamic reference to ListenSocket that
points to the hook provider (if any) to use for incoming connections on
that socket.
For outgoing connections modules still have to find the IOHookProvider
they want to use themselves but instead of calling AddIOHook(hookprov),
now they have to call IOHookProvider::OnConnect() after the connection
has been established.
2014-01-22 19:10:01 +01:00
Attila Molnar
89510c143f
Bump API version because of 3f4d54eb031f1cd6b016dfe1f768ed86303e3856
2014-01-21 14:13:02 +01:00