Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-12-18 | m_sakick Replace C string with C++ string | Attila Molnar | |
2013-12-18 | Clean up error messages in a few SA commands | Attila Molnar | |
2013-12-18 | Add a Flash Policy Daemon module | Daniel Vassdal | |
2013-12-16 | Merge pull request #586 from SaberUK/master+test-build | Attila Molnar | |
Add a tool for running test builds. | |||
2013-12-16 | Add a tool for running test builds. | Peter Powell | |
2013-12-15 | Fix $config{UID} being set incorrectly | Peter Powell | |
Fixes issue #697 reported by @Nowaker | |||
2013-12-15 | Merge pull request #708 from SaberUK/master+development-branch | Attila Molnar | |
Add a warning that the user is using a development version. | |||
2013-12-14 | Merge pull request #689 from SaberUK/master+cxxify | Adam | |
Clean up various things. | |||
2013-12-15 | Make various self contained methods static. | Peter Powell | |
- InspIRCd::IsValidMask - InspIRCd::TimeString | |||
2013-12-15 | Purge docs/rfc from the repository. | Peter Powell | |
These are of no use to 99% of users and anyone who actually wants to read them should be capable of using Google to find them. | |||
2013-12-15 | Remove some pointless code: | Peter Powell | |
- Remove the CHARSET entry from ISUPPORT. CHARSET was removed in draft-brocklesby-irc-isupport-03 and we always used the default value anyway. This has also been removed in the latest version of Charybdis. - Remove irc::sockets::satouser. This helper method was longer than the code it replaced. | |||
2013-12-15 | Move stuff around a bit: | Peter Powell | |
- 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. | |||
2013-12-13 | Add a warning that the user is using a development version. | Peter Powell | |
2013-11-21 | m_cap Convert capability names in CAP REQ to lowercase before processing them | attilamolnar | |
Requested in #686 | |||
2013-11-21 | Fix a few issues | attilamolnar | |
- Rehash notices - Modes in CAPAB - GetTargetAndAction() not being static in m_callerid - Loading custom configuration files using --config. (@SaberUK) - ServerConfig::Read not using std::endl. (@SaberUK) - Out of date comments in opers.conf.example, issue #624 | |||
2013-11-21 | Allow multiple allowmasks in link blocks, #679 | Adam | |
2013-11-21 | Disallow remote /MODULES for non-opers. | Daniel Vassdal | |
2013-11-18 | Merge pull request #685 from SaberUK/master+gnutls-rng | Attila Molnar | |
Use gnutls_rnd instead of gcry_randomize on newer GnuTLS versions. | |||
2013-11-18 | Use gnutls_rnd instead of gcry_randomize on newer GnuTLS versions. | Peter Powell | |
Also, fix a bug where eval() caused compile errors. | |||
2013-11-12 | These two numerics are supposed to use SentText() as they can go to remote ↵ | Adam | |
users... | |||
2013-11-12 | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | Adam | |
automatically | |||
2013-11-09 | Merge pull request #672 from SaberUK/master+rt-link-err | Adam | |
Fix PrefixMode not being exported which caused runtime link errors. | |||
2013-11-09 | Fix PrefixMode not being exported which caused runtime link errors. | Peter Powell | |
2013-09-15 | Remove redundant parameter.clear()s from mode handlers | attilamolnar | |
2013-09-15 | m_services_account Remove OnDecodeMetaData handler | attilamolnar | |
Override StringExtItem::unserialize() instead | |||
2013-09-13 | Pass an interface to the OnSync hooks | attilamolnar | |
Remove Module::ProtoSendMetaData() | |||
2013-09-13 | Split ProtocolInterface::SendMetaData() into multiple functions | attilamolnar | |
2013-09-12 | Send ListModeBase modes implicitly on channel sync | attilamolnar | |
Remove Module::ProtoSendMode() and ListModeBase::DoSyncChannel() | |||
2013-09-12 | Keep lists of mode handlers by type | attilamolnar | |
2013-09-12 | Add ModeHandler::IsListModeBase() and MC_LIST | attilamolnar | |
2013-09-11 | m_modenotice Use WriteNotice() | attilamolnar | |
2013-09-11 | Convert cmd_modenotice into an optional module | attilamolnar | |
2013-09-11 | Move prefix mode specific fields and getters into PrefixMode | attilamolnar | |
Add ModeHandler::IsPrefixMode() | |||
2013-09-11 | Create a base class for prefix modes | attilamolnar | |
Move Channel::SetPrefix() into Membership | |||
2013-09-11 | Add a type id field to ModeHandler | attilamolnar | |
2013-09-10 | m_spanningtree Minor fixes | attilamolnar | |
- Handle the case when servers SQUIT themselves - Fix extra space in channel messages | |||
2013-09-10 | m_spanningtree Handle ERROR when fully connected | attilamolnar | |
2013-09-10 | m_spanningtree Move c2s commands out of SpanningTreeCommands to auto ↵ | attilamolnar | |
register them | |||
2013-09-08 | Change allocation of a few services to make use of auto registration | attilamolnar | |
2013-09-08 | Hide all symbols that aren't exported explicitly | attilamolnar | |
In addition to reducing the sizes of all binaries this also helps the optimizer | |||
2013-09-08 | Remove InspIRCd::HandleRehash functor | attilamolnar | |
Call InspIRCd::Rehash() from cmd_rehash and from the SIGHUP handler | |||
2013-09-08 | Automatically register ServiceProviders created by modules | attilamolnar | |
2013-09-08 | Deduplicate code in modmanager_static and modmanager_dynamic | attilamolnar | |
2013-09-08 | Remove ModuleManager::ModCount and GetCount() | attilamolnar | |
2013-09-08 | Fix module loading in PURE_STATIC builds | attilamolnar | |
2013-09-08 | Fix compile warnings as seen on g++ 4.4.7 | Adam | |
2013-08-30 | Remove ModuleManager::GetAllModuleNames(), use GetModules() instead | attilamolnar | |
2013-08-30 | Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵ | attilamolnar | |
and on rehash This eliminates the need for calling OnRehash() in init() | |||
2013-08-30 | Merge insp20 | attilamolnar | |
2013-08-30 | Don't CoreExport reference, fixes m_dnsbl on Windows | attilamolnar | |
The explicit instantiations of reference are now useless; remove |