| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| | * | Bump API version because of 3f4d54eb031f1cd6b016dfe1f768ed86303e3856 | Attila Molnar | 2014-01-21 | 1 | -1/+1 |
| | * | Remove unused variables, avoid copies where possible, check empty() instead o...•••Most of these were detected by cppcheck
| attilamolnar | 2013-05-16 | 1 | -1/+1 |
| * | | Eliminate constant return value of the all events version of ModuleManager::S... | Attila Molnar | 2015-02-15 | 1 | -1/+1 |
| * | | Convert mods calling the old compat wrapper of ModuleManager::SetPriority() t... | Attila Molnar | 2015-02-15 | 1 | -6/+0 |
| * | | Remove I_BEGIN from enum Implementation | Attila Molnar | 2015-02-15 | 1 | -1/+0 |
| * | | Remove class Event and the OnEvent hook | Attila Molnar | 2015-02-11 | 1 | -35/+1 |
| * | | Remove the unused OnGlobalOper hook | Attila Molnar | 2015-01-10 | 1 | -9/+1 |
| * | | Migrate code from ModeParser into cmd_mode (core_user)•••- Process() that takes a std::vector<std::string>
- DisplayCurrentModes()
- DisplayListModes()
| Attila Molnar | 2014-09-04 | 1 | -1/+1 |
| * | | Pass Modes::ChangeList references to the OnPreMode hook, make it modifiable•••This gets rid of the duplicated mode parsing logic in m_namedmodes
| Attila Molnar | 2014-09-04 | 1 | -2/+2 |
| * | | Pass the modes to the OnMode hook as a Modes::ChangeList, pass ModeProcessFla... | Attila Molnar | 2014-09-03 | 1 | -5/+6 |
| * | | Change allocation of InspIRCd::Modules to be physically part of the object co... | Attila Molnar | 2014-06-24 | 1 | -1/+1 |
| * | | Change the type of the user parameter in the OnUserPreNick() hook from User t...•••No remote users were passed to this hook before.
Remove needless IS_LOCAL() checks.
| Attila Molnar | 2014-06-20 | 1 | -5/+2 |
| * | | Prefix all definitions in config.h to avoid potential collisions. | Peter Powell | 2014-05-23 | 1 | -1/+1 |
| * | | Document parameters and return value for the OnNamesListItem() hook | Attila Molnar | 2014-04-20 | 1 | -0/+7 |
| * | | Change the OnNamesListItem() hook to return ModResult•••Return MOD_RES_DENY to exclude the user from the NAMES list
| Attila Molnar | 2014-04-20 | 1 | -3/+2 |
| * | | Replace mode letter parameter of OnRawMode() with a ModeHandler*, remove pcnt | Attila Molnar | 2014-02-21 | 1 | -3/+2 |
| * | | Return a Membership* from get_first_visible_channel() in cmd_who and pass tha... | Attila Molnar | 2014-02-14 | 1 | -2/+2 |
| * | | Only compile the testsuite if INSPIRCD_ENABLE_TESTSUITE is defined | Attila Molnar | 2014-02-07 | 1 | -1/+3 |
| * | | Add Channel* parameter to OnSendWhoLine | Attila Molnar | 2014-01-25 | 1 | -1/+2 |
| * | | Convert UserChanList to an intrusively linked list | Attila Molnar | 2014-01-24 | 1 | -1/+1 |
| * | | 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.
| Attila Molnar | 2014-01-22 | 1 | -7/+1 |
| * | | Move server description field from TreeServer into Server; remove OnGetServer... | Attila Molnar | 2014-01-05 | 1 | -11/+1 |
| * | | Clean up CoreException•••- Remove default constructor
- Replace virtual functions returning C strings with functions returning const std::string refs
| Attila Molnar | 2013-12-18 | 1 | -2/+2 |
| * | | Move stuff around a bit:•••- Create FileSystem class:
* Move ServerConfig::CleanFilename to FileSystem::GetFileName and rewrite.
* Move ServerConfig::ExpandPath to FileSystem.
* Move ServerConfig::FileExists to FileSystem.
* Move ServerConfig::StartsWithWindowsDriveLetter to FileSystem.
- Move FileReader to fileutils.cpp and fix documentation.
- Move UserManager::DoBackgroundUserStuff to usermanager.cpp.
| Peter Powell | 2013-12-15 | 1 | -38/+0 |
| * | | Pass an interface to the OnSync hooks•••Remove Module::ProtoSendMetaData()
| attilamolnar | 2013-09-13 | 1 | -42/+16 |
| * | | Send ListModeBase modes implicitly on channel sync•••Remove Module::ProtoSendMode() and ListModeBase::DoSyncChannel()
| attilamolnar | 2013-09-12 | 1 | -13/+0 |
| * | | Hide all symbols that aren't exported explicitly•••In addition to reducing the sizes of all binaries this also helps the optimizer
| attilamolnar | 2013-09-08 | 1 | -1/+1 |
| * | | Automatically register ServiceProviders created by modules | attilamolnar | 2013-09-08 | 1 | -1/+19 |
| * | | Deduplicate code in modmanager_static and modmanager_dynamic | attilamolnar | 2013-09-08 | 1 | -0/+9 |
| * | | Remove ModuleManager::ModCount and GetCount() | attilamolnar | 2013-09-08 | 1 | -12/+0 |
| * | | Fix module loading in PURE_STATIC builds | attilamolnar | 2013-09-08 | 1 | -5/+1 |
| * | | Remove ModuleManager::GetAllModuleNames(), use GetModules() instead | attilamolnar | 2013-08-30 | 1 | -8/+0 |
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init()
| attilamolnar | 2013-08-30 | 1 | -9/+15 |
| * | | Fix a couple of issues•••- Wrong doc for Snomask::GetDescription()
- Incorrect idle time when WHOISing remote users
- String + int = garbage
- Remote MODE commands (user mode changes) being broadcast in addition to being forwarded
- Incorrect revision being shown
| attilamolnar | 2013-08-08 | 1 | -1/+1 |
| * | | Automatically attach modules to events | attilamolnar | 2013-08-04 | 1 | -8/+16 |
| * | | Change the syntax of FOREACH macros to be less dumb. | Adam | 2013-08-04 | 1 | -9/+7 |
| * | | Move dynamic_reference and related classes to dynref.h | attilamolnar | 2013-07-19 | 1 | -68/+0 |
| * | | Fix Doxygen comments. | Peter Powell | 2013-06-21 | 1 | -2/+2 |
| * | | Replace void* dest and target_type parameters of OnMode with a User* and a Ch... | attilamolnar | 2013-06-13 | 1 | -7/+8 |
| * | | Get rid of the OnRemoteKill hook, make use of GetRouting() and TR_CUSTOM to r... | attilamolnar | 2013-06-12 | 1 | -9/+1 |
| * | | Change command name parameter of OnPostCommand to be a Command* | attilamolnar | 2013-06-12 | 1 | -1/+1 |
| * | | Remove deprecated Request cross-module communication mechanism | attilamolnar | 2013-06-07 | 1 | -41/+0 |
| * | | Create IOHook interface (extracted from Module) | attilamolnar | 2013-06-07 | 1 | -42/+0 |
| * | | Route WALLOPS like a regular command, remove OnWallops hook | attilamolnar | 2013-06-02 | 1 | -7/+1 |
| * | | Clean up the FileReader class and all of the modules that use it.•••- Modules which use this class will now have to catch a
CoreException when opening files if they wish to ignore
the failed loading of a file.
- m_randquote has been cleaned up massively and the RANDQUOTE
command has been removed as it was pretty much useless.
| Peter Powell | 2013-05-27 | 1 | -52/+18 |
| * | | Merge pull request #545 from SaberUK/master+logging-cleanup•••Clean up the logging system (part 1 of 2). | Attila Molnar | 2013-05-21 | 1 | -2/+2 |
| |\ \ |
|
| | * | | Fix spacing in calls to LogManager::Log. | Peter Powell | 2013-05-19 | 1 | -2/+2 |
| * | | | Remove OnUserPreNotice and OnUserNotice hooks, add MessageType argument to On...•••All modules (except m_nonotice) that perform filtering on messages have common logic for handling PRIVMSGs and NOTICEs and most of them run the exact same code in both cases
| attilamolnar | 2013-05-20 | 1 | -38/+7 |
| |/ / |
|
| * | | Merge insp20 | attilamolnar | 2013-04-28 | 1 | -0/+5 |
| |\| |
|
| | * | Don't attempt to unload or reload modules that are waiting to be unloaded | attilamolnar | 2013-04-05 | 1 | -1/+6 |