aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Fix warnings when building under GCC 6.Gravatar Peter Powell2016-02-191-3/+3
|/ / /
* | | Add rewritten m_watch moduleGravatar Attila Molnar2016-01-061-0/+267
| | | | | | | | | | | | Code is shared with m_monitor
* | | Add m_monitor which implements the MONITOR command and notificationsGravatar Attila Molnar2016-01-061-0/+443
| | |
* | | Nuke m_watchGravatar Attila Molnar2016-01-062-530/+0
| | |
* | | m_spanningtree Ignore SVSWATCH from 2.0 serversGravatar Attila Molnar2016-01-061-0/+5
| | |
* | | m_spanningtree Add compatibility hack that allows modules to drop the ↵Gravatar Attila Molnar2016-01-061-1/+26
| | | | | | | | | | | | | | | | | | VF_COMMON/VF_OPTCOMMON flags Include m_watch in the list
* | | Convert remaining NOTICEs implemented using WriteServ() to WriteNotice()Gravatar Attila Molnar2015-12-291-2/+2
| | |
* | | Fix some whitespace issuesGravatar Attila Molnar2015-12-283-3/+3
| | |
* | | m_cap Fix incorrect syntax of empty CAP LIST replyGravatar Attila Molnar2015-12-281-1/+1
| | | | | | | | | | | | Fixes issue #1120 reported by @ProgVal
* | | m_xline_db Don't flush database when an xline expiresGravatar Attila Molnar2015-12-181-5/+0
| | |
* | | Remove some IS_SERVER() checksGravatar Attila Molnar2015-12-078-9/+9
| | | | | | | | | | | | | | | - 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
* | | Do not insert FakeUsers into UserManager::uuidlistGravatar Attila Molnar2015-12-071-4/+0
| | | | | | | | | | | | Inserting them causes FindUUID() and FindNick() to return server users which is not what modules want
* | | m_spanningtree Try FindServerID() first if the prefix looks like a sid in ↵Gravatar Attila Molnar2015-12-071-7/+17
| | | | | | | | | | | | TreeSocket::FindSource()
* | | m_spanningtree Change allocation of ModuleSpanningTree::commands to be ↵Gravatar Attila Molnar2015-12-062-5/+2
| | | | | | | | | | | | physically part of the object containing it
* | | 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-062-2/+2
| | |
* | | Add m_ircv3_echomessage which implements the IRCv3.2 echo-message extensionGravatar Attila Molnar2015-12-061-0/+70
| | |
* | | 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 ↵Gravatar Attila Molnar2015-12-051-0/+2
| | | | | | | | | | | | | | | | Cap::Reference
| * | | 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 ↵Gravatar Attila Molnar2015-12-051-0/+6
| | | | | | | | | | | | | | | | Cap::Manager::NotifyValueChange()
| * | | 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 ↵Gravatar Attila Molnar2015-12-051-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | CAP LS Let modules implementing caps query this information
| * | | m_cap Add Capability::OnList() hookGravatar Attila Molnar2015-12-051-0/+3
| | | |
| * | | m_sasl Create SASLCap which subclasses Cap::Capability and implements ↵Gravatar Attila Molnar2015-12-051-2/+21
| | | | | | | | | | | | | | | | OnRequest()
| * | | m_cap Add Capability::OnRequest() hookGravatar Attila Molnar2015-12-051-1/+9
| | | |
| * | | Add rewritten m_cap moduleGravatar Attila Molnar2015-12-056-21/+266
| | | | | | | | | | | | | | | | | | | | - Caps are now managed by m_cap - Each cap uses one bit in an extension item shared with other caps
| * | | 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
| | |
* | | m_services_account Handle FORMAT_INTERNAL when unserializing the accountnameGravatar Attila Molnar2015-11-261-0/+5
| | | | | | | | | | | | Skip sending the numeric and firing the OnAccountChange event
* | | Handle module reloading in core_reloadmodule entirelyGravatar Attila Molnar2015-11-261-23/+2
| | |
* | | m_ssl_gnutls Disable SSL v3 and when acting as a server enforce our cipher ↵Gravatar Attila Molnar2015-11-111-1/+1
| | | | | | | | | | | | preferences by default
* | | m_ssl_gnutls Strip unrecognized tokens from the priority string if ↵Gravatar Attila Molnar2015-11-111-2/+61
| | | | | | | | | | | | configured to do so or when using the default
* | | m_ssl_gnutls Add GnuTLS::Priority::GetDefault()Gravatar Attila Molnar2015-11-111-2/+12
| | |
* | | m_ssl_gnutls Remove DH parameter generationGravatar Attila Molnar2015-11-101-17/+1
| | | | | | | | | | | | Generating DH params like this blocked the main thread, significantly slowing down startup and it made /rehash ssl freeze the server until the generation finished. External tools such as our genssl should be used to generate DH params.
* | | m_ssl_openssl Disable compression and SSL v3 by defaultGravatar Attila Molnar2015-11-101-2/+2
| | |
* | | m_ssl_openssl Add workaround for a memory leak in OpenSSLGravatar Attila Molnar2015-11-101-1/+9
| | |
* | | Add UserManager::NextAlreadySentId() and convert all code to use itGravatar Attila Molnar2015-11-031-2/+2
| | |
* | | Rewrite invite systemGravatar Attila Molnar2015-11-023-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | - Moved out of core, now lives entirely in core_channel - Accessible using the provided API after including the appropriate header - Invites are stored in an extension attached to LocalUser/Channel objects, they no longer need special handling when destroying these objects or when lowering TS - Expiration of timed invites are implemented using Timers - When creating a new invite let a non-timed invite override a timed one
* | | m_ssl_openssl Implement custom BIO methods that call SocketEngine methodsGravatar Attila Molnar2015-07-071-3/+86
| | |
* | | m_ssl_openssl Remove NULL check of the session in OpenSSLIOHook constructorGravatar Attila Molnar2015-07-071-2/+0
| | |