| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Refactor m_httpd_stats, add subpages (#1554) | 2019-01-28 | 1 | -146/+226 | ||
| * | | Fix parsing anticaps mode parameters (again).•••It is better to fix the underlying bug than the result of it. This replaces commit 963213132dd923d0e7dbd47ea6f20373cdef343b. | 2019-01-28 | 1 | -6/+6 | ||
| * | | Fix sending the SSL connection notice when using a non-SSL gateway. | 2019-01-25 | 1 | -1/+1 | ||
| * | | Remove trailing whitespace from various source files. | 2019-01-24 | 6 | -13/+13 | ||
| * | | Fix parsing anticaps mode parameters. | 2019-01-24 | 1 | -5/+5 | ||
| * | | Add the reason to xline removal notices. (#1545)•••Show the reason in manual xline removal SNOTICEs, just like expiry SNOTICEs do. This modifies XLineManager::DelLine() to require another string reference passed to it. Requested by @Robby-. | 2019-01-24 | 5 | -13/+22 | ||
| * | | Add translation for casemapping between 2.0/3.0 (#1544)•••If the casemapping is set to ascii, advertise the m_ascii module to 2.0 to allow use of the m_ascii extras module for 2.0 | 2019-01-24 | 1 | -0/+9 | ||
| * | | Move the <disabled> tag out of the core to a new module. | 2019-01-24 | 3 | -6/+192 | ||
| * | | Avoid forwarding passwords to nickserv when using SASL (#1562) | 2019-01-24 | 1 | -0/+8 | ||
| * | | Fix a crash in m_sslinfo when a socket is SSL but a gateway is not. | 2019-01-23 | 1 | -2/+1 | ||
| * | | Fix away broadcast logic (#1561) | 2019-01-23 | 1 | -1/+1 | ||
| * | | Rename OnClientProtocolProcessTag to OnProcessTag. | 2019-01-22 | 1 | -1/+1 | ||
| * | | Move ident lookups to the OnSetUserIP hook. | 2019-01-20 | 1 | -2/+14 | ||
| * | | Fix sending the entire VERSION output as a single parameter.•••Closes #1560. | 2019-01-19 | 1 | -2/+6 | ||
| * | | m_check: Fix showing oper permissions (privileges). (#1556) | 2019-01-17 | 1 | -1/+1 | ||
| * | | Fix the hostchange set action swapping the host/value fields. | 2019-01-14 | 1 | -1/+1 | ||
| * | | Redo OnSetEndPoint logic to fix duplicate clones (#1549). | 2019-01-14 | 2 | -26/+4 | ||
| * | | Allow wildcards in <connect:dnsbl>•••This makes it consistent with other <connect> class parameters like `webirc` | 2019-01-11 | 1 | -2/+6 | ||
| * | | Fix reading the server path for UNIX sockets. | 2019-01-10 | 1 | -1/+1 | ||
| * | | Fix copying too much data into the remote endpoint field.•••This is a buffer overrun but its harmless as the things it will overwrite are no longer necessary. | 2019-01-10 | 1 | -1/+1 | ||
| * | | m_ircv3_echomessage: only echo the tags which were actually used. | 2019-01-10 | 1 | -3/+4 | ||
| * | | Fix m_alias not initialising 'active' before use. | 2019-01-09 | 1 | -0/+1 | ||
| * | | Improve X-line text consistency.•••- Change any "-Line", ":Line", or "*line" to "-line" throughout the X-line code, comments, and documentation. - Add periods to the end of some notices. - Correct a typo in the Q-line code comments. - Update the filter module documentation (shun addition). Co-authored-by: Robby <robby@chatbelgie.be> | 2019-01-09 | 9 | -28/+28 | ||
| * | | Move RPL_UNINVITED to 653 to avoid a collision with Bahamut/ircu. | 2019-01-05 | 1 | -1/+1 | ||
| * | | Merge m_restrictchans and m_regonlycreate due to converging functionality (#1... | 2019-01-04 | 2 | -73/+34 | ||
| * | | Improve the spanningtree "unknown command" error message. | 2019-01-03 | 1 | -1/+1 | ||
| * | | Fix a crash when trying to use ROUTE_TYPE_MESSAGE with no message. | 2019-01-02 | 2 | -2/+7 | ||
| * | | Fix message tags not being broadcast across the network. | 2019-01-02 | 9 | -29/+107 | ||
| * | | Strip message tags when talking with 1202 protocol servers. | 2019-01-02 | 1 | -0/+6 | ||
| * | | Remove spanningtree check for lines sent without a source.•••We don't send any of these anymore. | 2019-01-02 | 1 | -6/+0 | ||
| * | | Only parse valid durations, don't treat invalid multipliers as seconds (#1538) | 2018-12-21 | 10 | -15/+45 | ||
| * | | Fix thinking that 1202 protocol servers have not finished bursting.•••A server introduction is only a burst if all of the parent servers of it are not bursting. Fixes #1527. | 2018-12-20 | 1 | -3/+13 | ||
| * | | Add the <maxlist> tag and switch ListModeBase to always use it.•••The old method of doing this was: 1. Extremely inconsistently used. Some list modes used <banlist> and some used their own config tag. 2. Not documented in the slightest. There was a small reference to <maxbans> for the ban mode but nothing else. 3. In some cases conflicting with other config tags. The chanfilter module defined a <chanfilter> tag for general config whilst also using it for the max list settings. The new <maxlist> tag avoids these issues entirely. | 2018-12-19 | 5 | -6/+20 | ||
| * | | Make more modules rehash atomically (#1535)•••Have each module validate the values it loads before setting them, so any errors don't result in partial application of the configs | 2018-12-19 | 15 | -118/+276 | ||
| * | | Fix not propagating rehashes properly across the network.•••The REHASH command is not routed like a normal command. When a rehash that needs to be forwarded is received the local server forwards it indirectly by calling the local REHASH handler which then calls the OnPreRehash hook. This results in the OnPreRehash hook being called whilst loopCall is true. The bug which this check was added to fix seems to no longer be present so no alternate fix for that seems necessary. Closes #1537. | 2018-12-17 | 1 | -3/+0 | ||
| * | | Fix ParamModeBase::OnUnset() not being virtual.•••Closes #1536. | 2018-12-16 | 2 | -2/+2 | ||
| * | | Update the cloaks of connected users when their IP address changes. | 2018-12-13 | 1 | -0/+18 | ||
| * | | Store durations as unsigned long not long in XLine and m_filter. | 2018-12-13 | 6 | -14/+14 | ||
| * | | Fix conversion issues by replacing ConvToInt with ConvToNum<T>.•••The former was a thin wrapper around atol and brought with it all of the weird parsing logic of atol which is almost never what is actually wanted. It also almost never returned the numeric type which is actually wanted which can cause weird issues when casting. | 2018-12-12 | 22 | -34/+34 | ||
| * | | Fix not rejecting invalid durations in DCCALLOW. | 2018-12-12 | 1 | -2/+3 | ||
| * | | Fix a crash when the core_oper module is not loaded. | 2018-12-12 | 1 | -1/+2 | ||
| * | | Use consistent numerics when a mode already exists or doesn't exist. | 2018-12-09 | 2 | -27/+0 | ||
| * | | Use ERR_BANLISTFULL in the chanfilter and exemptchanops modules. | 2018-12-09 | 2 | -12/+1 | ||
| * | | Fix a numeric collision with UnrealIRCd's help numerics.•••We were not using these correctly and the ircd-ratbox numerics are more widely supported so using those is better. | 2018-12-09 | 1 | -20/+24 | ||
| * | | Allow users on an accept list to bypass the +R user mode.•••As implemented in ircd-seven and possibly other servers. | 2018-12-09 | 1 | -15/+24 | ||
| * | | Allow modules to check if a user is on a callerid accept list. | 2018-12-09 | 1 | -0/+23 | ||
| * | | Raise the default max number of ACCEPT entries from 16 to 30. | 2018-12-09 | 1 | -1/+1 | ||
| * | | Fix detecting secure clients connecting through HAProxy/WEBIRC. | 2018-12-01 | 6 | -85/+92 | ||
| * | | Move IsValidDuration into the core. | 2018-11-24 | 1 | -15/+1 | ||
| * | | Fix some incorrect conditions in the showfile module.•••Thanks to @genius3000 for pointing this out. | 2018-11-24 | 1 | -2/+2 | ||
