| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Improve and modernize the SQL system API. | 2017-12-22 | 3 | -64/+64 | |
| | | | | | | | | | | | | | | - Move everything into the SQL namespace and drop the SQL prefix. - Move SQLProvider::PopulateUserInfo to SQL::PopulateUserInfo. - Rename SQLEntry to SQL::Field and clean up. - Rename SQLEntries to SQL::Row. - Rename SQLerror to SQL::Error and clean up. - Rename SQLerrorNum to SQL::ErrorCode and drop the SQL_ prefix. - Rename ParamL to SQL::ParamList. - Rename ParamM to SQL::ParamMap; - Make implementing SQLQuery::OnError mandatory. - Redo most of the documentation in the sql header. | ||||
| * | Merge pull request #1370 from clinew/insp30+openssl-crl | 2017-12-21 | 1 | -0/+45 | |
| |\ | | | | | Add OpenSSL CRLs. | ||||
| | * | Add OpenSSL CRLs. | 2017-12-14 | 1 | -0/+45 | |
| | | | | | | | | | | | | | | | | | The 'crlfile' argument can point to a file that contains valid CRLs. The 'crlpath' argument can point to a directory which contains CRLs, albeit in OpenSSL's special hashed/symlink format. The 'crlmode' option 'chain' checks all certificates in the chain while the option 'leaf' checks only the leaf certificate in a chain. | ||||
| * | | Remove usage of deprecated API members in m_ssl_openssl. | 2017-12-16 | 1 | -5/+19 | |
| |/ | | | | Closes #1440. | ||||
| * | Bump the minimum versions of GnuTLS to 2.0.0 and OpenSSL to 1.0.0. | 2017-11-30 | 2 | -12/+2 | |
| | | | | | Old TLS libraries should not be used anymore due to security risks. | ||||
| * | Improve TLS security configuration in m_ssl_openssl. | 2017-11-30 | 1 | -4/+3 | |
| | | | | | | | | | | - Always disable SSLv3. Unreal has already done this so clients will have to upgrade anyway. - Disable TLSv1.0 by default. Various security standards (e.g. PCI DSS) are already planning on sunsetting this so we should too. | ||||
| * | Convert GenRandom to std::function. | 2017-11-25 | 1 | -5/+4 | |
| | | |||||
| * | Add the override keyword in places that it is missing. | 2017-11-21 | 4 | -19/+19 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Unite SSL service providers and SSL profile classes | 2017-11-13 | 3 | -155/+215 | |
| | | |||||
| * | Merge tag 'v2.0.25' into master. | 2017-11-12 | 2 | -3/+1 | |
| |\ | |||||
| | * | Update wiki links to use HTTPS and point to the correct pages. | 2017-10-15 | 2 | -3/+1 | |
| | | | | | | | | | | | When we release 3.0 these links will break as they will point to the pages for 3.0 rather than 2.0. | ||||
| | * | m_ldapauth: fix providing username in PASS | 2017-03-20 | 1 | -29/+18 | |
| | | | | | | | | | | | | | | | | | | | | | This has never worked because it never prepended attribute= to the search string. It also would prefer matching nick/ident over the user string provided which is inconsistent, since your ability to authenticate using PASS would depend on a ldap entry not existing with your current nick/ident. Instead, use username provided in PASS and then fallback to nick/ident. | ||||
| * | | Fix some SSL module issues. | 2017-11-01 | 2 | -1/+7 | |
| | | | | | | | | | | | - Use the same dhparams name in m_ssl_openssl as in other modules. - Fix building m_ssl_mbedtls. | ||||
| * | | Add support to IOHook for retrieving the hostname sent via SNI. | 2017-10-29 | 2 | -0/+29 | |
| | | | |||||
| * | | Add PackageInfo directives for Debian. | 2017-10-21 | 11 | -0/+12 | |
| | | | |||||
| * | | Clean up OnCleanup. | 2017-10-18 | 3 | -6/+6 | |
| | | | | | | | | | | | | | | | | | | | - Switch to using ExtensionItem::ExtensibleType for the type instead of TargetTypeFlags. - Pass the extensible to OnCleanup as an Extensible pointer instead of a void pointer. - Call OnCleanup for memberships as well as channels and users. - Rewrite event documentation to remove outdated references. | ||||
| * | | Fix a broken distro constraint in the m_ssl_gnutls PackageInfo. | 2017-10-12 | 1 | -1/+1 | |
| | | | |||||
| * | | Convert a bunch of time-related config options to getDuration. | 2017-09-03 | 1 | -1/+1 | |
| | | | |||||
| * | | Fix a broken distro constraint in the m_ssl_openssl PackageInfo. | 2017-08-11 | 1 | -1/+1 | |
| | | | |||||
| * | | Add CXX11_OVERRIDE to overridden members that lack it. | 2017-07-12 | 1 | -4/+4 | |
| | | | | | | | | | | | This fixes a ton of warnings when building on compilers that default to C++11 or newer. | ||||
| * | | Fix LibreSSL not having a shim for the OpenSSL 1.1 BIO API. | 2016-11-23 | 1 | -1/+1 | |
| | | | |||||
| * | | Fix OpenSSL build errors caused by BIO/BIO_METHOD now being opaque. | 2016-10-25 | 1 | -5/+45 | |
| | | | |||||
| * | | Add CentOS PackageInfo | 2016-09-16 | 8 | -0/+10 | |
| | | | |||||
| * | | Merge pull request #1222 from SaberUK/master+warnings | 2016-09-16 | 2 | -0/+12 | |
| |\ \ | | | | | | | Fix various compiler warnings | ||||
| | * | | Fix m_ldap warning about OpenLDAP being deprecated on OS X. | 2016-09-15 | 1 | -0/+5 | |
| | | | | |||||
| | * | | Fix m_geoip warning about the use of C++11 features. | 2016-09-15 | 1 | -0/+7 | |
| | | | | |||||
| * | | | Rewrite the build system directive parser. | 2016-09-16 | 12 | -38/+64 | |
| |/ / | |||||
| * | | Merge insp20 | 2016-09-02 | 1 | -1/+3 | |
| |\| | |||||
| | * | m_sqlite3 Fix possible memory leak when opening a database fails | 2016-08-17 | 1 | -1/+3 | |
| | | | |||||
| * | | Fix whitespace issues | 2016-09-02 | 1 | -1/+1 | |
| | | | |||||
| * | | Remove broken mssql module | 2016-08-23 | 1 | -857/+0 | |
| | | | | | | | | | Issue #1006 | ||||
| * | | Fix m_mysql warning about use of C++11 features on C++03. | 2016-08-19 | 1 | -2/+6 | |
| | | | | | | | | | NO_CLIENT_LONG_LONG was removed in a recent version of MySQL. | ||||
| * | | Fix m_ldap not linking to liblber on UNIX systems. | 2016-08-19 | 1 | -1/+1 | |
| | | | |||||
| * | | m_ldap Remove unused LDAPService::last_timeout_check | 2016-08-19 | 1 | -2/+1 | |
| | | | |||||
| * | | Merge insp20 | 2016-08-17 | 2 | -1/+10 | |
| |\| | |||||
| | * | m_ssl_openssl Verify DH params being non-NULL before setting it on the context | 2016-07-22 | 1 | -4/+11 | |
| | | | | | | | | | Fixes issue reported by @m4rkw on IRC | ||||
| | * | m_ssl_gnutls, m_ssl_openssl After a read schedule another read if data ↵ | 2016-06-21 | 2 | -1/+11 | |
| | | | | | | | | | remains in the buffer of the SSL library | ||||
| * | | m_ssl_mbedtls Apply dummy CA workaround for client context | 2016-08-10 | 1 | -0/+1 | |
| | | | |||||
| * | | m_ssl_* Add option to sslprofile controlling whether to request client ↵ | 2016-08-08 | 3 | -9/+39 | |
| | | | | | | | | | certificates | ||||
| * | | Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ↵ | 2016-08-08 | 3 | -28/+19 | |
| | | | | | | | | | | | | | module Use it to simplify logic in all modules using or providing IOHooks | ||||
| * | | Pass sendq to OnStreamSocketWrite | 2016-08-08 | 3 | -6/+3 | |
| | | | |||||
| * | | Add mbedTLS SSL module | 2016-06-15 | 1 | -0/+924 | |
| | | | |||||
| * | | Deduplicate code for on connect SSL ciphersuite NOTICE by moving it into ↵ | 2016-04-28 | 2 | -43/+0 | |
| | | | | | | | | | m_sslinfo | ||||
| * | | Export the GetCiphersuite() method from the SSL modules | 2016-04-28 | 2 | -2/+6 | |
| | | | |||||
| * | | Introduce Stats::Context, pass it to the OnStats hook and switch all code to it | 2016-02-25 | 1 | -5/+4 | |
| | | | |||||
| * | | Merge insp20 | 2016-02-22 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update m_ssl_gnutls to use libgnutls-30 for gnutls 3.4 | 2016-02-11 | 1 | -1/+1 | |
| | | | |||||
| * | | Fix GCC 6 warning about auto_ptr via a different method. | 2016-02-20 | 1 | -4/+8 | |
| | | | | | | | | | The previous method was causing build errors on CentOS and Solaris. | ||||
| * | | Fix warnings when building under GCC 6. | 2016-02-19 | 1 | -3/+3 | |
| | | | |||||
| * | | m_ssl_gnutls Disable SSL v3 and when acting as a server enforce our cipher ↵ | 2015-11-11 | 1 | -1/+1 | |
| | | | | | | | | | preferences by default | ||||
