summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-02-19Fix cap-notify sending ADD instead of NEW.Peter Powell
2016-01-06Add rewritten m_watch moduleAttila Molnar
Code is shared with m_monitor
2016-01-06Add m_monitor which implements the MONITOR command and notificationsAttila Molnar
2016-01-06Nuke m_watchAttila Molnar
2016-01-06m_spanningtree Ignore SVSWATCH from 2.0 serversAttila Molnar
2016-01-06m_spanningtree Add compatibility hack that allows modules to drop the ↵Attila Molnar
VF_COMMON/VF_OPTCOMMON flags Include m_watch in the list
2015-12-30core_whois Switch to Numeric::BuilderAttila Molnar
2015-12-30cmd_names Switch to Numeric::BuilderAttila Molnar
2015-12-30cmd_names Inherit handler from SplitCommandAttila Molnar
2015-12-30core_ison Switch to Numeric::BuilderAttila Molnar
2015-12-30core_ison Inherit handler from SplitCommandAttila Molnar
2015-12-30core_ison Simplify handlerAttila Molnar
2015-12-29Convert remaining NOTICEs implemented using WriteServ() to WriteNotice()Attila Molnar
2015-12-29Fix InspIRCd::StripColor() stripping characters that shouldn't be strippedAttila Molnar
2015-12-28cmd_part Send ERR_NOTONCHANNEL if the user is not on the channelAttila Molnar
Fixes issue #1117 reported by @ProgVal
2015-12-28Return true from Channel::PartUser() if the user was on the channelAttila Molnar
2015-12-28Invert if in Channel::PartUser()Attila Molnar
2015-12-28Fix some whitespace issuesAttila Molnar
2015-12-28m_cap Fix incorrect syntax of empty CAP LIST replyAttila Molnar
Fixes issue #1120 reported by @ProgVal
2015-12-18m_xline_db Don't flush database when an xline expiresAttila Molnar
2015-12-08Strip all control codes except \001 in InspIRCd::StripColor()Attila Molnar
Fixes issue #1100 reported by @uecasm
2015-12-07Deduplicate code in InspIRCd::FindNick()Attila Molnar
2015-12-07Remove some IS_SERVER() checksAttila Molnar
- 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
2015-12-07Do not insert FakeUsers into UserManager::uuidlistAttila Molnar
Inserting them causes FindUUID() and FindNick() to return server users which is not what modules want
2015-12-07m_spanningtree Try FindServerID() first if the prefix looks like a sid in ↵Attila Molnar
TreeSocket::FindSource()
2015-12-06m_spanningtree Change allocation of ModuleSpanningTree::commands to be ↵Attila Molnar
physically part of the object containing it
2015-12-06m_spanningtree Implement ServerCommand::RegisterService()Attila Molnar
2015-12-06Add m_ircv3_invitenotify which implements the IRCv3.2 invite-notify extensionAttila Molnar
2015-12-06Add minimum channel rank and exception list parameters to the OnUserInvite hookAttila Molnar
2015-12-06cmd_invite Fire the OnUserInvite event before announcing the inviteAttila Molnar
2015-12-06cmd_invite Extend scope of the prefix character variableAttila Molnar
2015-12-06Add m_ircv3_echomessage which implements the IRCv3.2 echo-message extensionAttila Molnar
2015-12-06Remove <options:ircumsgprefix> entirelyAttila Molnar
2015-12-06Merge branch 'master+cap'Attila Molnar
2015-12-05Add m_ircv3_chghost which implements the IRCv3.2 chghost extensionAttila Molnar
2015-12-05m_ircv3 Make WriteNeighborsWithCap() available for use in other modulesAttila Molnar
2015-12-05m_cap Make Capability objects compatible with dynamic_references, add ↵Attila Molnar
Cap::Reference
2015-12-05Add m_ircv3_capnotify which implements the IRCv3.2 cap-notify extensionAttila Molnar
2015-12-05m_cap Save and restore the cap state of a module when it is reloadedAttila Molnar
2015-12-05m_cap Specialize extension itemAttila Molnar
2015-12-05m_sasl Advertise SASL mechanism list to supporting clientsAttila Molnar
2015-12-05m_cap Provide the OnCapValueChange event and add ↵Attila Molnar
Cap::Manager::NotifyValueChange()
2015-12-05m_cap Provide the OnCapAddDel() eventAttila Molnar
2015-12-05m_cap Add Capability::GetCapValue(), list capabilities with valuesAttila Molnar
2015-12-05m_cap Reject CAP CLEAR from clients newer than 3.1Attila Molnar
2015-12-05m_cap Learn the supported capability negotiation protocol of a client from ↵Attila Molnar
CAP LS Let modules implementing caps query this information
2015-12-05m_cap Add Capability::OnList() hookAttila Molnar
2015-12-05m_sasl Create SASLCap which subclasses Cap::Capability and implements ↵Attila Molnar
OnRequest()
2015-12-05m_cap Add Capability::OnRequest() hookAttila Molnar
2015-12-05Add rewritten m_cap moduleAttila Molnar
- Caps are now managed by m_cap - Each cap uses one bit in an extension item shared with other caps