aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Fix some whitespace issuesGravatar Attila Molnar2015-12-285-12/+12
* | | | m_cap Fix incorrect syntax of empty CAP LIST reply•••Fixes issue #1120 reported by @ProgVal Gravatar Attila Molnar2015-12-281-1/+1
* | | | m_xline_db Don't flush database when an xline expiresGravatar Attila Molnar2015-12-181-5/+0
* | | | Strip all control codes except \001 in InspIRCd::StripColor()•••Fixes issue #1100 reported by @uecasm Gravatar Attila Molnar2015-12-081-1/+2
* | | | Deduplicate code in InspIRCd::FindNick()Gravatar Attila Molnar2015-12-071-8/+1
* | | | Remove some IS_SERVER() checks•••- InspIRCd::FindUUID() and FindNick() no longer return FakeUsers so checking the user returned from those methods is needless - m_dccallow is calling FindNickOnly() so it had the check needlessly Gravatar Attila Molnar2015-12-0710-11/+11
* | | | Do not insert FakeUsers into UserManager::uuidlist•••Inserting them causes FindUUID() and FindNick() to return server users which is not what modules want Gravatar Attila Molnar2015-12-072-8/+7
* | | | m_spanningtree Try FindServerID() first if the prefix looks like a sid in Tre...Gravatar Attila Molnar2015-12-071-7/+17
* | | | m_spanningtree Change allocation of ModuleSpanningTree::commands to be physic...Gravatar Attila Molnar2015-12-062-5/+2
* | | | m_spanningtree Implement ServerCommand::RegisterService()Gravatar Attila Molnar2015-12-062-2/+9
* | | | Add m_ircv3_invitenotify which implements the IRCv3.2 invite-notify extensionGravatar Attila Molnar2015-12-061-0/+68
* | | | Add minimum channel rank and exception list parameters to the OnUserInvite hookGravatar Attila Molnar2015-12-064-6/+13
* | | | cmd_invite Fire the OnUserInvite event before announcing the inviteGravatar Attila Molnar2015-12-061-1/+2
* | | | cmd_invite Extend scope of the prefix character variableGravatar Attila Molnar2015-12-061-20/+17
* | | | Add m_ircv3_echomessage which implements the IRCv3.2 echo-message extensionGravatar Attila Molnar2015-12-061-0/+70
* | | | Remove <options:ircumsgprefix> entirelyGravatar Attila Molnar2015-12-062-10/+2
* | | | Merge branch 'master+cap'Gravatar Attila Molnar2015-12-069-43/+711
|\ \ \ \
| * | | | Add m_ircv3_chghost which implements the IRCv3.2 chghost extensionGravatar Attila Molnar2015-12-052-2/+69
| * | | | m_ircv3 Make WriteNeighborsWithCap() available for use in other modulesGravatar Attila Molnar2015-12-051-22/+3
| * | | | m_cap Make Capability objects compatible with dynamic_references, add Cap::Re...Gravatar Attila Molnar2015-12-051-0/+2
| * | | | Add m_ircv3_capnotify which implements the IRCv3.2 cap-notify extensionGravatar Attila Molnar2015-12-051-0/+149
| * | | | m_cap Save and restore the cap state of a module when it is reloadedGravatar Attila Molnar2015-12-051-1/+81
| * | | | m_cap Specialize extension itemGravatar Attila Molnar2015-12-051-1/+54
| * | | | m_sasl Advertise SASL mechanism list to supporting clientsGravatar Attila Molnar2015-12-051-0/+22
| * | | | m_cap Provide the OnCapValueChange event and add Cap::Manager::NotifyValueCha...Gravatar Attila Molnar2015-12-051-0/+6
| * | | | m_cap Provide the OnCapAddDel() eventGravatar Attila Molnar2015-12-051-2/+11
| * | | | m_cap Add Capability::GetCapValue(), list capabilities with valuesGravatar Attila Molnar2015-12-051-4/+16
| * | | | m_cap Reject CAP CLEAR from clients newer than 3.1Gravatar Attila Molnar2015-12-051-1/+1
| * | | | m_cap Learn the supported capability negotiation protocol of a client from CA...•••Let modules implementing caps query this information Gravatar Attila Molnar2015-12-051-0/+12
| * | | | m_cap Add Capability::OnList() hookGravatar Attila Molnar2015-12-051-0/+3
| * | | | m_sasl Create SASLCap which subclasses Cap::Capability and implements OnReque...Gravatar Attila Molnar2015-12-051-2/+21
| * | | | m_cap Add Capability::OnRequest() hookGravatar Attila Molnar2015-12-051-1/+9
| * | | | Add rewritten m_cap module•••- Caps are now managed by m_cap - Each cap uses one bit in an extension item shared with other caps Gravatar Attila Molnar2015-12-056-21/+266
| * | | | m_ircv3 Change signature of WriteNeighboursWithExt to accept a cap, renameGravatar Attila Molnar2015-12-051-7/+7
* | | | | m_sasl Enforce usage of uuids in server-to-server SASL commandGravatar Attila Molnar2015-12-051-1/+1
|/ / / /
* | | | Nuke m_capGravatar Attila Molnar2015-12-051-148/+0
* | | | Merge branch 'master+serviceinit'Gravatar Attila Molnar2015-12-024-24/+43
|\ \ \ \
| * | | | Implement ExtensionItem::RegisterService()Gravatar Attila Molnar2015-11-232-4/+6
| * | | | Implement ModeHandler::RegisterService()Gravatar Attila Molnar2015-11-232-7/+6
| * | | | Implement Command::RegisterService()Gravatar Attila Molnar2015-11-232-4/+6
| * | | | Add ServiceProvider::RegisterService(), call it from ModuleManager::AddService()Gravatar Attila Molnar2015-11-232-1/+5
| * | | | Extract code that manipulates the ModuleManager::DataProviders map into methodsGravatar Attila Molnar2015-11-231-9/+21
* | | | | Merge branch 'master+reloadmod'Gravatar Attila Molnar2015-12-015-70/+595
|\ \ \ \ \
| * | | | | core_reloadmodule Allow modules to handle reload failures of other modsGravatar Attila Molnar2015-11-261-0/+14
| * | | | | core_reloadmodule Allow modules to save and restore their own data when reloa...Gravatar Attila Molnar2015-11-261-2/+32
| * | | | | core_reloadmodule Save and restore module state (modes, extensions) on reloadGravatar Attila Molnar2015-11-261-0/+497
| * | | | | Add LocalIntExt and LocalStringExt::unserialize() for non-FORMAT_NETWORKGravatar Attila Molnar2015-11-261-0/+12
| * | | | | Fix FORMAT_INTERNAL handling in LocalIntExt::serialize() and LocalStringExt::...Gravatar Attila Molnar2015-11-261-2/+2
| * | | | | Add typedef ExtensionManager::ExtMapGravatar Attila Molnar2015-11-261-3/+3
| * | | | | m_services_account Handle FORMAT_INTERNAL when unserializing the accountname•••Skip sending the numeric and firing the OnAccountChange event Gravatar Attila Molnar2015-11-261-0/+5