| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| | * | Make sure the DN strings obtained from the SSL mods are always valid | Attila Molnar | 2014-07-24 | 2 | -4/+22 |
| | * | Change Windows libraries to be dynamically linked | Adam | 2014-04-13 | 5 | -22/+23 |
| | * | m_ssl_openssl Avoid Applink on Windows by calling PEM_read_bio_DHparams() ins... | Attila Molnar | 2014-04-13 | 1 | -0/+11 |
| * | | Say "SSL certificate fingerprint" instead of "SSL fingerprint" everywhere | Attila Molnar | 2014-07-19 | 2 | -2/+2 |
| * | | Access local user list via new UserManager::GetLocalUsers() and make local_us... | Attila Molnar | 2014-07-19 | 1 | -2/+5 |
| * | | Move and rename typedef LocalUserList to UserManager::LocalList | Attila Molnar | 2014-07-19 | 1 | -1/+1 |
| * | | Remove current time parameter of the Timer constructor | Attila Molnar | 2014-07-10 | 1 | -1/+1 |
| * | | Set SSL options to sane default and enfore server cipher preferences•••Original PR #856
| Julien Vehent | 2014-06-30 | 1 | -0/+3 |
| * | | Ignore safe compiler warnings in a more reliable way. | Peter Powell | 2014-06-28 | 4 | -20/+38 |
| * | | Kill needless #includes in source files | Attila Molnar | 2014-06-14 | 2 | -4/+0 |
| * | | Change allocation of InspIRCd::Threads to be physically part of the object co... | Attila Molnar | 2014-06-13 | 3 | -3/+3 |
| * | | m_ssl_openssl Remove unused MAX_DESCRIPTORS define | Attila Molnar | 2014-06-07 | 1 | -2/+0 |
| * | | m_ssl_gnutls Don't include cap.h•••The tls cap is handled by m_starttls
| Attila Molnar | 2014-05-26 | 1 | -1/+0 |
| * | | m_ldap: time out LDAP queries•••Set LDAP_OPT_NETWORK_TIMEOUT to 0 in m_ldap to prevent the asynchronous
library calls from blocking
Fix memory leak of pending queries when m_ldap is unloaded
| Adam | 2014-05-10 | 1 | -12/+68 |
| * | | Merge insp20 | Attila Molnar | 2014-04-07 | 1 | -2/+8 |
| |\| |
|
| | * | m_ssl_openssl Fix memory leaks on /rehash ssl, unload and in VerifyCertificate() | Attila Molnar | 2014-01-26 | 1 | -2/+6 |
| | * | Set a session id on our server ssl context in m_ssl_openssl. It is required f... | Adam | 2014-01-24 | 1 | -0/+3 |
| * | | Change allocation of InspIRCd::Timers to be physically part of the object con... | Attila Molnar | 2014-03-15 | 1 | -1/+1 |
| * | | Remove support for advertising the SSL ports in RPL_ISUPPORT.•••- No other IRC servers implement this.
- No IRC clients I can find support this.
| Peter Powell | 2014-02-13 | 2 | -94/+0 |
| * | | Change all socketengine methods to be static | Attila Molnar | 2014-02-08 | 3 | -28/+28 |
| * | | Remove some dead code | Attila Molnar | 2014-01-31 | 1 | -1/+0 |
| * | | Allow Timers to delete themselves in Tick() | Attila Molnar | 2014-01-30 | 1 | -0/+1 |
| * | | Omit the server name internally when building a /STATS reply and prepend it l... | Attila Molnar | 2014-01-25 | 1 | -1/+1 |
| * | | 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.
| Attila Molnar | 2014-01-22 | 2 | -332/+226 |
| * | | 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.
| Attila Molnar | 2014-01-22 | 2 | -354/+790 |
| * | | m_ssl_gnutls Create GNUTLS_NEW_CERT_CALLBACK_API and cert_cb_last_param_type | Attila Molnar | 2014-01-22 | 1 | -15/+21 |
| * | | Add m_starttls and remove it from m_ssl_gnutls, which allows it to work with ... | Adam | 2014-01-21 | 1 | -65/+1 |
| * | | Add m_ldap, and convert m_ldapoper and m_ldapauth to use it. | Adam | 2013-12-19 | 3 | -657/+572 |
| * | | Use gnutls_rnd instead of gcry_randomize on newer GnuTLS versions.•••Also, fix a bug where eval() caused compile errors.
| Peter Powell | 2013-11-18 | 1 | -3/+14 |
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick au... | Adam | 2013-11-12 | 1 | -4/+4 |
| * | | Automatically register ServiceProviders created by modules | attilamolnar | 2013-09-08 | 10 | -19/+0 |
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init()
| attilamolnar | 2013-08-30 | 10 | -38/+11 |
| * | | Merge insp20 | attilamolnar | 2013-08-30 | 2 | -2/+10 |
| |\| |
|
| | * | m_ssl_gnutls Fix feature testing and cipher suite related errors on older Gnu...•••Use the (old) LIBGNUTLS_VERSION_* defines as a fallback when GNUTLS_VERSION_* is unavailable
Fixes #595 reported by @rhylan
| attilamolnar | 2013-08-13 | 1 | -1/+9 |
| | * | m_ssl_openssl Fix inverted check that prevented certificates from being recog... | attilamolnar | 2013-07-16 | 1 | -1/+1 |
| * | | Fix various small issues.•••- Add CXX11_OVERRIDE to *Regex::Matches and *RegexFactory::Create.
- Fix documentation comment on regex_string.
- Fix various code duplication/layout issues.
| Peter Powell | 2013-08-27 | 5 | -28/+13 |
| * | | Make all regex modules throw the same exception on error. | Peter Powell | 2013-08-27 | 5 | -50/+5 |
| * | | Clean up the build system properties and related code.•••- Deduplicate getcompilerflags, getdependancies, getlinkerflags.
- Remove $NoPedantic (add -Wno-pedantic to $CompileFlags instead).
- Remove --enable-freebsd-ports-openssl and all related code (this
will be replaced with --no-pkg-config=[name] in the future).
- Remove some unused build system properties.
- Remove support for caching third party include and library paths
(can cause unexpected problems when they change).
| Peter Powell | 2013-08-16 | 3 | -10/+4 |
| * | | Remove $ModDep comments | attilamolnar | 2013-08-15 | 6 | -7/+0 |
| * | | Add <path> keys for all of the compile-time paths.•••Also, make all paths in the config relative to their associated
directory. This reverts a change in 2.0 which turned out to be a
terrible idea, especially for system-wide installations.
| Peter Powell | 2013-08-12 | 2 | -8/+8 |
| * | | Automatically attach modules to events | attilamolnar | 2013-08-04 | 11 | -26/+0 |
| * | | Modify the log message to contain the log type. | Peter Powell | 2013-08-04 | 2 | -16/+16 |
| * | | Change modules to use the MODNAME constant when logging.•••The majority of modules were logging with their module name as the
log type. There was a few places which were logging to a non-name
type but, with the exception of CONFIG, those messages are so
uncommon that it doesn't make sense to use a seperate type for
them.
| Peter Powell | 2013-08-04 | 7 | -35/+35 |
| * | | Allow the user to specify any hashing mechanism supported by the underlying S... | Daniel Vassdal | 2013-07-06 | 2 | -5/+25 |
| * | | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 2013-07-04 | 14 | -18/+0 |
| * | | Add RE2 regex module. | Peter Powell | 2013-06-16 | 1 | -0/+89 |
| * | | Create SSLIOHook interface that provides GetCertificate() | attilamolnar | 2013-06-07 | 2 | -28/+18 |
| * | | Create IOHook interface (extracted from Module) | attilamolnar | 2013-06-07 | 2 | -653/+698 |
| * | | Convert a ton of uses of MAXBUF to use a fixed buffer size. | Peter Powell | 2013-06-06 | 2 | -4/+4 |
| * | | Compare to ServerLimits::MaxLine instead of MAXBUF. | Peter Powell | 2013-06-06 | 1 | -1/+1 |