aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
...
* | m_sqlauth Allow the client certificate fingerprint to be used in the SQL queryGravatar Attila Molnar2014-02-111-0/+4
| | | | | | | | Idea by @m4z
* | Call DelFd() and SetFd(-1) from SocketEngine::Close(EventHandler*)Gravatar Attila Molnar2014-02-092-4/+1
| |
* | Change all socketengine methods to be staticGravatar Attila Molnar2014-02-086-35/+35
| |
* | Replace SocketEngine::GetName() with INSPIRCD_SOCKETENGINE_NAME defineGravatar Attila Molnar2014-02-081-1/+1
| |
* | Change SocketEngine functions that do not require an instance to be staticGravatar Attila Molnar2014-02-081-4/+4
| |
* | m_ldapauth.cpp: Allow multiple patterns for users to bypass LDAP authGravatar Thiago Crepaldi2014-02-071-5/+14
| |
* | Convert irc::stringjoiner to be a method instead of a class.Gravatar Peter Powell2014-02-064-14/+9
| | | | | | | | Add separator parameter
* | Fix various cases of UUID exposure.Gravatar Peter Powell2014-02-062-5/+5
| | | | | | | | | | | | | | - Introduce WriteCommand which sends * when the user has not registered. - Switch a ton of code to use WriteCommand instead of WriteServ. - Convert WriteNotice to be a wrapper around WriteCommand. - Only send * when NICK has not been sent instead of before registration.
* | m_cap Instead of using case insensitive compare convert the subcommand to ↵Gravatar Attila Molnar2014-02-061-1/+2
| | | | | | | | | | | | uppercase This way if we send back the subcommand it will be in uppercase even if the client sent it in lowercase
* | Remove a few unnecessary .c_str() callsGravatar Attila Molnar2014-01-315-5/+5
| |
* | Remove some dead codeGravatar Attila Molnar2014-01-318-18/+1
| |
* | m_conn_join Read default settings in ReadConfig()Gravatar Attila Molnar2014-01-301-6/+13
| |
* | m_conn_join: Allow time-delayed joinsGravatar Daniel Vassdal2014-01-301-8/+57
| |
* | m_conn_join: Fixed indentationGravatar Daniel Vassdal2014-01-301-23/+23
| |
* | Allow Timers to delete themselves in Tick()Gravatar Attila Molnar2014-01-301-0/+1
| |
* | m_spanningtree Rewrite /mapGravatar Adam2014-01-282-108/+128
| |
* | m_tline Minor improvementsGravatar Attila Molnar2014-01-271-7/+10
| | | | | | | | | | | | - Replace floats with integers - Use size() instead of counting elements - Use WriteNotice()
* | m_alias Remove duplicate checksGravatar Attila Molnar2014-01-271-7/+3
| |
* | m_alias Use equal_range() when searching for aliasesGravatar Attila Molnar2014-01-271-19/+6
| |
* | Add m_clearchan which removes users from a channel without sending n*(n+1)/2 ↵Gravatar Attila Molnar2014-01-261-0/+217
| | | | | | | | QUIT messages
* | Add ProtocolInterface::BroadcastEncap() and infrastructure for manually ↵Gravatar Attila Molnar2014-01-263-1/+17
| | | | | | | | forwarding ENCAPs
* | ProtocolInterface::SendEncapsulatedData() changesGravatar Attila Molnar2014-01-264-16/+25
| | | | | | | | | | | | - Pass command name and destination as real parameters - Allow callers to specify the command source - Send a SID instead of a server name if the target is a single server
* | Add Channel* parameter to OnSendWhoLineGravatar Attila Molnar2014-01-253-16/+5
| |
* | Omit the server name internally when building a /STATS reply and prepend it ↵Gravatar Attila Molnar2014-01-254-9/+9
| | | | | | | | later
* | Convert InspIRCd::PassCompare to return bool instead of int.Gravatar Peter Powell2014-01-252-2/+2
| | | | | | | | | | The insane behaviour of this method was due to an implementation detail which has since become irrelevent.
* | Convert UserChanList to an intrusively linked listGravatar Attila Molnar2014-01-249-36/+32
| |
* | Remove whitespace and minor style changesGravatar Attila Molnar2014-01-2326-30/+10
| |
* | Globally #undef min and max on WindowsGravatar Attila Molnar2014-01-231-5/+0
| |
* | Split IOHook into IOHook and IOHookProviderGravatar Attila Molnar2014-01-226-355/+248
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Add the ability to have multiple SSL profilesGravatar Attila Molnar2014-01-222-354/+790
| | | | | | | | | | | | | | | | SSL profiles are now used instead of fixed SSL settings for everything SSL, making it possible to use completely different settings for each listener and outgoing connection. Outgoing connections are broken until the next commit.
* | m_ssl_gnutls Create GNUTLS_NEW_CERT_CALLBACK_API and cert_cb_last_param_typeGravatar Attila Molnar2014-01-221-15/+21
| |
* | Merge insp20Gravatar Attila Molnar2014-01-2127-65/+219
|\|
| * m_httpd_stats Be more conservative when escaping dataGravatar Attila Molnar2014-01-211-2/+1
| | | | | | | | Fix clang warning
| * m_joinflood Unset the mode on unloadGravatar Attila Molnar2014-01-211-2/+1
| |
| * Fix some logically dead code which was found by Coverity.Gravatar Peter Powell2014-01-211-11/+4
| |
| * m_svshold Add config option to hide snoticesGravatar Attila Molnar2014-01-201-4/+23
| |
| * m_httpd Add timeout option; remove timed out connectionsGravatar Attila Molnar2014-01-201-1/+31
| |
| * m_services_account Add workaround for wrong host being displayed in numeric ↵Gravatar Attila Molnar2014-01-201-2/+31
| | | | | | | | when cgiirc users log in using SASL
| * m_dnsbl Don't send snotice when the {G|K|Z}line already existsGravatar Attila Molnar2014-01-201-0/+9
| | | | | | | | Fixes issue #717 reported by @Robby-
| * m_joinflood Fix remote joins affecting local joinflood state when the ↵Gravatar Attila Molnar2014-01-191-1/+1
| | | | | | | | | | | | channel is locked Fixes issue #694 reported by @TurkDesk
| * Use FindNickOnly() in a few more places if a local user is performing an ↵Gravatar Attila Molnar2014-01-194-6/+25
| | | | | | | | action to prevent UID walking
| * m_dccallow Increase penalty for /DCCALLOW helpGravatar Attila Molnar2014-01-191-0/+4
| |
| * m_alias Fix out of bounds string access that happened with certain replace ↵Gravatar Attila Molnar2014-01-191-2/+2
| | | | | | | | strings
| * Merge pull request #732 from grawity/saslfixGravatar Attila Molnar2014-01-161-4/+7
| |\ | | | | | | m_sasl: properly handle bad-mechanism failures
| | * Support SASL messages other than 'C' and 'D'Gravatar Mantas Mikulėnas2014-01-111-2/+6
| | |
| | * Handle SASL failures during SASL_INIT (wrong mechanism, etc.)Gravatar Mantas Mikulėnas2014-01-111-2/+1
| | |
| * | m_sajoin Send global snotice when the join happensGravatar Attila Molnar2014-01-141-2/+1
| | | | | | | | | | | | | | | | | | Remove "sent remote SAJOIN" local snotice Fixes issue #382 reported by @JDowny
| * | m_mlock Only deny the mlocked mode from being changed instead of denying the ↵Gravatar Attila Molnar2014-01-131-9/+4
| |/ | | | | | | | | | | entire mode change if it contains a single mlocked mode Fixes issue #615 reported by @BlacklightShining
| * Fix the HELPOP database being destroyed when a rehash fails.Gravatar Peter Powell2013-12-271-5/+5
| |
| * Allow ranges beginning with 0 in m_channamesGravatar Daniel Vassdal2013-12-211-0/+6
| |