| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename IdentMax to MaxUser for consistency with the other limits. | 2020-11-27 | 1 | -3/+3 | |
| * | Merge tag 'v3.8.1' into master. | 2020-11-20 | 1 | -2/+4 | |
| |\ | |||||
| | * | Silence a harmless warning in newer versions of GCC. | 2020-11-12 | 1 | -2/+4 | |
| * | | Convert IRCv3::Replies::Reply#Send[IfCap] to variadic functions. | 2020-11-12 | 2 | -106/+26 | |
| * | | Add stdalgo::equal_range and switch more stuff to iterator_range. | 2020-11-11 | 1 | -0/+11 | |
| * | | Convert FOREACH_MOD_CUSTOM to a variadic function. | 2020-11-10 | 2 | -18/+20 | |
| * | | Convert FIRST_MOD_RESULT_CUSTOM to a variadic function. | 2020-11-10 | 2 | -25/+28 | |
| * | | Convert UserType to be a uint8_t and move inside User. | 2020-11-10 | 1 | -14/+22 | |
| * | | Initial support for platform-specific module file extensions. | 2020-11-04 | 1 | -0/+10 | |
| * | | Move config typedefs to ServerConfig and use auto in more places. | 2020-11-03 | 3 | -14/+10 | |
| * | | Fix inconsistencies with FilePosition and column counting. | 2020-11-03 | 1 | -1/+1 | |
| * | | Rename ConfigTag::tag to ConfigTag::name. | 2020-11-03 | 1 | -4/+5 | |
| * | | Move FilePosition to fileutils.h and use in ConfigTag. | 2020-11-03 | 2 | -8/+30 | |
| * | | Replace ConfigTag::create with a public constructor. | 2020-11-03 | 1 | -5/+9 | |
| * | | Rename ConfigItems to ConfigTag::Items. | 2020-11-03 | 2 | -7/+7 | |
| * | | Convert ConnectClass from reference<> to std::shared_ptr<>. | 2020-11-03 | 3 | -7/+7 | |
| * | | Clean up a bunch of contructors and destructors. | 2020-11-01 | 16 | -69/+21 | |
| * | | Merge branch 'insp3' into master. | 2020-11-01 | 1 | -1/+1 | |
| |\| | |||||
| | * | Release v3.8.0. v3.8.0 | 2020-10-30 | 1 | -1/+1 | |
| | * | Update copyright headers. | 2020-10-30 | 1 | -1/+1 | |
| * | | Convert ConfigTag from reference<> to std::shared_ptr<>. | 2020-10-31 | 6 | -21/+21 | |
| * | | Add stdalgo::iterator_range and switch config tag reading to use it.•••This allows us to use range-based for loops which were not possible with the previous config tag system. | 2020-10-31 | 3 | -1/+72 | |
| * | | Convert OperInfo from reference<> to std::shared_ptr<>. | 2020-10-31 | 3 | -6/+7 | |
| * | | Merge branch 'insp3' into master. | 2020-10-27 | 4 | -21/+84 | |
| |\| | |||||
| | * | Don't kill cloaking users when hash/md5 is missing. | 2020-10-27 | 1 | -1/+1 | |
| | * | Fix the behaviour of multi-value PING and PONG messages. | 2020-10-26 | 1 | -1/+4 | |
| | * | Recheck users for xlines when their real hostname changes. | 2020-10-06 | 1 | -17/+79 | |
| | * | Check that the values specified in <limits> are reasonable. | 2020-09-30 | 1 | -2/+2 | |
| * | | Convert CmdResult to an 8-bit strongly typed enum. | 2020-10-27 | 3 | -14/+14 | |
| * | | Merge branch 'insp3' into master. | 2020-09-27 | 1 | -0/+1 | |
| |\| | |||||
| | * | Make shun block client-only tags by default. | 2020-09-27 | 1 | -0/+1 | |
| * | | Merge branch 'insp3' into master. | 2020-08-25 | 2 | -1/+2 | |
| |\| | |||||
| | * | Silence some copy warnings on C++11 compilers. | 2020-08-01 | 1 | -0/+20 | |
| | * | Release v3.7.0. v3.7.0 | 2020-07-30 | 1 | -1/+1 | |
| | * | Update copyright headers. | 2020-07-30 | 1 | -0/+1 | |
| | * | Make the ERR_CANNOTSENDTOCHAN extban message less misleading. | 2020-07-30 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2020-07-29 | 2 | -3/+9 | |
| |\| | |||||
| | * | 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 | 2 | -3/+9 | |
| * | | Add a method for creating a regex pattern with included flags. | 2020-07-29 | 1 | -0/+29 | |
| * | | 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 | 1 | -19/+130 | |
| * | | Clean up ISUPPORT code and implement support for ISUPPORT updates. | 2020-07-24 | 1 | -1/+3 | |
| * | | Add a method for comparing two maps. | 2020-07-24 | 1 | -0/+63 | |
| * | | Move the property string from cmd_modules to Module & show on load. | 2020-07-24 | 1 | -0/+3 | |
| * | | Pascalize Cap::set and rename Cap::get to IsEnabled. | 2020-07-20 | 3 | -12/+12 | |
| * | | Pascalize ExtensionItem::{get,set,unset}_raw. | 2020-07-20 | 1 | -9/+11 | |
| * | | Clean up the StreamSocket documentation comments slightly. | 2020-07-20 | 1 | -10/+8 | |
| * | | Move GetNextLine from StreamSocket to TreeSocket. | 2020-07-20 | 1 | -6/+0 | |
| * | | Fix the case of getError/getSendQSize and rewrite the doc comments. | 2020-07-20 | 1 | -4/+6 | |
| * | | Split OnSetEndPoint into two events. | 2020-07-20 | 2 | -5/+11 | |
| * | | Merge branch 'insp3' into master. | 2020-07-15 | 1 | -1/+1 | |
| |\| | |||||
