| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Merge branch 'insp3' into master. | 2020-10-27 | 13 | -36/+289 | ||
| |\| | ||||||
| | * | Don't kill cloaking users when hash/md5 is missing. | 2020-10-27 | 1 | -2/+10 | ||
| | * | Fix the behaviour of multi-value PING and PONG messages. | 2020-10-26 | 2 | -5/+25 | ||
| | * | Change glob matching to be configurable | 2020-10-24 | 1 | -2/+17 | ||
| | * | m_cban: Implement support for channel masks•••Allows wildcards to be used | 2020-10-24 | 1 | -2/+3 | ||
| | * | Fixes by misspell-fixer | 2020-10-15 | 1 | -1/+1 | ||
| | * | Add an option to allow disengaging joinflood on initial boot. | 2020-10-12 | 1 | -0/+4 | ||
| | * | Add an option to allow disengaging joinflood after a netsplit. | 2020-10-12 | 1 | -3/+21 | ||
| | * | Implement support for Argon2 password hashing.•••Resolves #1540. | 2020-10-10 | 1 | -0/+214 | ||
| | * | Fix firing the wrong event when a real hostname changes. | 2020-10-08 | 1 | -1/+1 | ||
| | * | Add the User::exempt flag to m_check. | 2020-10-06 | 1 | -0/+2 | ||
| | * | Recheck users for xlines when their real hostname changes. | 2020-10-06 | 3 | -0/+12 | ||
| | * | Rename the REALLEN 005 token to NAMELEN.•••Turns out this is already required by the IRCv3 setname spec but we forgot to implement it. Oops. | 2020-09-30 | 1 | -1/+1 | ||
| | * | Check that the values specified in <limits> are reasonable. | 2020-09-30 | 1 | -11/+11 | ||
| | * | Add an ISUPPORT token that contains the maximum real name length. | 2020-09-30 | 1 | -0/+1 | ||
| | * | Use the normal method for applying a default config in dnsbl. | 2020-09-29 | 1 | -8/+1 | ||
| | * | Fix the dnsbl module config not being checked case insensitively. | 2020-09-29 | 1 | -6/+5 | ||
| * | | Convert CmdResult to an 8-bit strongly typed enum. | 2020-10-27 | 133 | -477/+477 | ||
| * | | Replace the check for eventfd() with a C++17 header check. | 2020-10-20 | 1 | -1/+1 | ||
| * | | Merge branch 'insp3' into master. | 2020-09-27 | 4 | -50/+56 | ||
| |\| | ||||||
| | * | Add a shun option for cleaning problematic allowed commands. | 2020-09-27 | 1 | -9/+23 | ||
| | * | Make shun block client-only tags by default. | 2020-09-27 | 1 | -0/+14 | ||
| | * | Refactor the shun module slightly. | 2020-09-27 | 1 | -17/+14 | ||
| | * | Remove an unnecessary break statement. | 2020-09-27 | 1 | -1/+0 | ||
| | * | Fix the syntax of the MAXLIST 005 token. | 2020-09-24 | 1 | -18/+4 | ||
| | * | Refactor GenRandomStr for performance and readability. | 2020-09-23 | 1 | -8/+6 | ||
| * | | Purge the obsolete modenotice module. | 2020-09-27 | 1 | -72/+0 | ||
| * | | Require SSL for linking servers. | 2020-09-18 | 1 | -3/+3 | ||
| * | | Merge branch 'insp3' into master. | 2020-09-18 | 4 | -1/+8 | ||
| |\| | ||||||
| | * | Make it clear that <gnutls>, <mbedtls>, and <openssl> are deprecated. | 2020-09-16 | 3 | -3/+3 | ||
| | * | Fix OnChangeRealName not being fired for remote users. | 2020-09-01 | 1 | -1/+1 | ||
| | * | Fix a word missing from the last commit. | 2020-08-29 | 1 | -1/+1 | ||
| | * | Warn about non-local plaintext server connections. | 2020-08-29 | 3 | -4/+19 | ||
| * | | Merge branch 'insp3' into master. | 2020-08-25 | 12 | -9/+11 | ||
| |\| | ||||||
| | * | Fix null-checking the wrong variable in the disable module.•••Closes #1792. | 2020-08-01 | 1 | -1/+1 | ||
| | * | Release v3.7.0. v3.7.0 | 2020-07-30 | 1 | -1/+1 | ||
| | * | Update copyright headers. | 2020-07-30 | 11 | -8/+10 | ||
| * | | Merge branch 'insp3' into master. | 2020-07-29 | 9 | -32/+69 | ||
| |\| | ||||||
| | * | Replace all erroneous space indentation with tab indentation. | 2020-07-29 | 4 | -31/+31 | ||
| | * | Send ERR_KEYSET when trying to change a channel key.•••Closes #1750. | 2020-07-27 | 2 | -1/+3 | ||
| | * | Fix secure websocket users not being seen as secure.•••Since a TLS (SSL) module will always be the last IOHook attached to a socket, IsSSL() needs to ignore any Middle IOHooks that may also be attached. | 2020-07-27 | 1 | -0/+12 | ||
| | * | Allow disabling the timedbans set/unset notices (#1789). | 2020-07-22 | 1 | -10/+25 | ||
| | * | Show an error when an unprivileged user tries to mass-message.•••Closes #1790. | 2020-07-20 | 2 | -0/+6 | ||
| * | | Rewrite the regex system from scratch.•••* Move everything to the Regex namespace: - Regex -> Regex::Pattern - RegexException -> Regex::Exception - RegexFactory -> Regex::Engine * Add support for regex flags. - Regex::OPT_CASE_INSENSITIVE performs case-insensitive matching. * Add the Regex::EngineReference class as a friendly wrapper around dynamic_reference_nocheck<Regex::Engine>. * Add the Regex::SimpleEngine template class for automating the implementation of regex factory classes. * Use std::shared_ptr for Regex::Pattern objects instead of making users manage memory manually. | 2020-07-28 | 8 | -202/+157 | ||
| * | | Work around RE2 specifying -std=c++11 in its pkg-config file. | 2020-07-25 | 1 | -1/+1 | ||
| * | | Remove obsolete silencing of C++11 warnings from ssl_mbedtls. | 2020-07-25 | 1 | -11/+0 | ||
| * | | Clean up ISUPPORT code and implement support for ISUPPORT updates. | 2020-07-24 | 2 | -40/+83 | ||
| * | | Move the property string from cmd_modules to Module & show on load. | 2020-07-24 | 3 | -31/+31 | ||
| * | | Pascalize Cap::set and rename Cap::get to IsEnabled. | 2020-07-20 | 16 | -31/+31 | ||
| * | | Pascalize ExtensionItem::{get,set,unset}_raw. | 2020-07-20 | 8 | -29/+29 | ||
