aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_starttls.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2021-12-301-2/+2
* Only show the tls cap if there is a TLS provider available.Gravatar Sadie Powell2021-12-151-2/+25
* Update copyright headers.Gravatar InspIRCd Robot2020-04-241-0/+1
* Update user-facing text and comments of SSL to TLS.Gravatar Matt Schatz2020-04-141-1/+1
* Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2020-01-111-0/+3
* Some more text fixes and improvements (#1618).Gravatar Robby2019-04-281-1/+1
* Use CommandBase::Params instead of std::vector<std::string>.•••This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. Gravatar Peter Powell2018-07-261-1/+1
* Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs. Gravatar Peter Powell2017-11-211-1/+1
* Convert WriteNumeric() calls to pass the parameters of the numeric as method ...Gravatar Attila Molnar2016-02-251-4/+4
* Remove the STARTTLS token from ISUPPORT.•••This is an InspIRCd-specific token which is pointless because: 1. You can't STARTTLS after registration is complete. 2. You can already discover STARTTLS support via cap `tls`. Gravatar Peter Powell2016-02-191-5/+0
* 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-051-1/+1
* Convert the CAP event to use the new cross-module event systemGravatar Attila Molnar2015-02-111-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-221-5/+4
* Add m_starttls and remove it from m_ssl_gnutls, which allows it to work with ...Gravatar Adam2014-01-211-0/+122