aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Expand)AuthorAgeFilesLines
...
* | m_sqlauth Allow the client certificate fingerprint to be used in the SQL query•••Idea by @m4z Gravatar Attila Molnar2014-02-111-0/+4
* | 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.•••Add separator parameter Gravatar Peter Powell2014-02-064-14/+9
* | Fix various cases of UUID exposure.•••- 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. Gravatar Peter Powell2014-02-062-5/+5
* | m_cap Instead of using case insensitive compare convert the subcommand to upp...•••This way if we send back the subcommand it will be in uppercase even if the client sent it in lowercase Gravatar Attila Molnar2014-02-061-1/+2
* | 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 improvements•••- Replace floats with integers - Use size() instead of counting elements - Use WriteNotice() Gravatar Attila Molnar2014-01-271-7/+10
* | 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
* | Add ProtocolInterface::BroadcastEncap() and infrastructure for manually forwa...Gravatar Attila Molnar2014-01-263-1/+17
* | ProtocolInterface::SendEncapsulatedData() changes•••- 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 Gravatar Attila Molnar2014-01-264-16/+25
* | Add Channel* parameter to OnSendWhoLineGravatar Attila Molnar2014-01-253-16/+5
* | Omit the server name internally when building a /STATS reply and prepend it l...Gravatar Attila Molnar2014-01-254-9/+9
* | Convert InspIRCd::PassCompare to return bool instead of int.•••The insane behaviour of this method was due to an implementation detail which has since become irrelevent. Gravatar Peter Powell2014-01-252-2/+2
* | 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 IOHookProvider•••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. Gravatar Attila Molnar2014-01-226-355/+248
* | Add the ability to have multiple SSL profiles•••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. Gravatar Attila Molnar2014-01-222-354/+790
* | 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 data•••Fix clang warning Gravatar Attila Molnar2014-01-211-2/+1
| * 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 w...Gravatar Attila Molnar2014-01-201-2/+31
| * m_dnsbl Don't send snotice when the {G|K|Z}line already exists•••Fixes issue #717 reported by @Robby- Gravatar Attila Molnar2014-01-201-0/+9
| * m_joinflood Fix remote joins affecting local joinflood state when the channel...•••Fixes issue #694 reported by @TurkDesk Gravatar Attila Molnar2014-01-191-1/+1
| * Use FindNickOnly() in a few more places if a local user is performing an acti...Gravatar Attila Molnar2014-01-194-6/+25
| * 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 st...Gravatar Attila Molnar2014-01-191-2/+2
| * Merge pull request #732 from grawity/saslfix•••m_sasl: properly handle bad-mechanism failuresGravatar Attila Molnar2014-01-161-4/+7
| |\
| | * 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 happens•••Remove "sent remote SAJOIN" local snotice Fixes issue #382 reported by @JDowny Gravatar Attila Molnar2014-01-141-2/+1
| * | m_mlock Only deny the mlocked mode from being changed instead of denying the ...•••Fixes issue #615 reported by @BlacklightShining Gravatar Attila Molnar2014-01-131-9/+4
| |/
| * 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