| Commit message (Expand) | Author | Age | Files | Lines |
| * | Update copyright headers. | InspIRCd Robot | 2022-12-30 | 1 | -2/+1 |
| * | Clear the ban cache when an xline is expired as well as removed. | Sadie Powell | 2022-10-15 | 1 | -0/+1 |
| * | Fix unnecessarily using c_str in parameters that take a std::string. | Sadie Powell | 2022-09-04 | 1 | -1/+1 |
| * | Update copyright headers. | InspIRCd Robot | 2022-04-28 | 1 | -1/+1 |
| * | Fix some more grammar errors in xline messages. | Sadie Powell | 2022-04-05 | 1 | -1/+1 |
| * | Update copyright headers. | InspIRCd Robot | 2021-08-27 | 1 | -0/+1 |
| * | Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
| Josh Soref | 2021-06-21 | 1 | -1/+1 |
| * | Code refactor and minor fix (#1879) | Herman | 2021-06-12 | 1 | -2/+3 |
| * | Fix a bunch of weird indentation and spacing issues. | Sadie Powell | 2021-04-27 | 1 | -1/+1 |
| * | Update copyright headers. | InspIRCd Robot | 2021-03-05 | 1 | -2/+2 |
| * | Send RPL_SAVENICK from irc2 when renaming a user to their UUID. | Sadie Powell | 2020-12-22 | 1 | -0/+1 |
| * | Replace all erroneous space indentation with tab indentation. | Sadie Powell | 2020-07-29 | 1 | -19/+19 |
| * | Update copyright headers. | InspIRCd Robot | 2020-04-24 | 1 | -1/+1 |
| * | Fixes by misspell-fixer | InspIRCd Robot | 2020-04-21 | 1 | -2/+2 |
| * | Generalise XLine stats numerics using RPL_STATS from aircd. | Sadie Powell | 2020-02-18 | 1 | -2/+25 |
| * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -3/+8 |
| * | Only skip applying more X-lines to a user if they have been killed.•••This fixes an issue with the previous commit where if a user had a
non-killing X-line applied to them (e.g. Q-line) they would not
have any further X-lines applied to them.
Thanks to @linuxdaemon for pointing this out.
| Peter Powell | 2019-05-17 | 1 | -1/+5 |
| * | Fix applying pending xlines to online users. | Peter Powell | 2019-05-16 | 1 | -2/+5 |
| * | Fix BanCache entries existing after X-line expiry.•••When DefaultApply() adds a hit to the BanCache it uses the X-line
duration to set a duration on the entry. This can result in an
entry lasting longer than the X-line itself. Fix this by setting
the entry duration to the time left on the X-line.
| Matt Schatz | 2019-03-10 | 1 | -1/+1 |
| * | Improve the handling of config X-lines and filters. (#1583) | Matt Schatz | 2019-02-22 | 1 | -19/+40 |
| * | X-line expiries: use the new DurationString() function. | Matt Schatz | 2019-02-18 | 1 | -2/+2 |
| * | 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-. | Matt Schatz | 2019-01-24 | 1 | -1/+3 |
| * | 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>
| Matt Schatz | 2019-01-09 | 1 | -6/+6 |
| * | Store durations as unsigned long not long in XLine and m_filter. | Peter Powell | 2018-12-13 | 1 | -5/+5 |
| * | Show reasons in xline expiry messages. | Robby | 2018-10-14 | 1 | -2/+2 |
| * | Don't sync xlines defined in the config and expire them on rehash.•••Closes #1427.
| Peter Powell | 2018-09-23 | 1 | -1/+22 |
| * | Merge tag 'v2.0.26' into master. | Peter Powell | 2018-04-22 | 1 | -4/+0 |
| |\ |
|
| | * | Fix ELine::Matches returning false on existing match•••When checking for an E-Line match, we want to actually check for a
current match even if we previously matched and are set exempt.
This fixes situations where you have an E-Lined CGI:IRC address,
a G-Lined IP range for some area/host/etc and a smaller E-Lined
IP range for known good clients. Currently when CGI:IRC changes
the IP, E-Lines are rechecked but because the user is already exempt
(from the CGI:IRC E-Line), they are set no longer exempt and match
a G-Line, when they should match an E-Line.
This exact change has been done before in commit 'c8b344e' and shortly
reverted in 'c490a90' to fix issue #989 (CGI:IRC users remaining exempt
when the CGI:IRC address is E-Lined but they are not).
The actual cause to this issue was likely that the user's hostname was
not changed from the CGI:IRC hostname/IP prior to rechecking E-Lines.
This is being fixed in a separate commit.
| genius3000 | 2018-04-06 | 1 | -3/+0 |
| * | | Move OnStats from the core to a cross-module event.•••Some core code still exists in the XLine system but this will be
replaced when the XLine system is replaced later.
| Peter Powell | 2018-04-08 | 1 | -0/+1 |
| * | | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs.
| Peter Powell | 2017-11-21 | 1 | -5/+5 |
| * | | Hide User#host and User#dhost and use accessors to modify them.•••This removes the need to invalidate the cache after changing a
user's hostname.
| Peter Powell | 2017-10-28 | 1 | -3/+3 |
| * | | Merge the latest changes from insp20 into master. | Peter Powell | 2017-10-12 | 1 | -9/+3 |
| |\| |
|
| | * | Fix killing elined clients on [gkz]line in some cases. | Peter Powell | 2017-09-11 | 1 | -8/+3 |
| | * | Revert c8b344ea748d62d9f37cacd4dd785f15b186725c to fix regression•••Fixes issue #989 reported by @B00mX0r
| Attila Molnar | 2015-04-16 | 1 | -0/+3 |
| | * | Fix elines not matching elined users when rechecking elined status | Attila Molnar | 2015-01-17 | 1 | -3/+0 |
| * | | Replace irc::string in XLineLookup with irc::insensitive_swo map | Attila Molnar | 2016-08-22 | 1 | -2/+2 |
| * | | Introduce Stats::Context, pass it to the OnStats hook and switch all code to it | Attila Molnar | 2016-02-25 | 1 | -2/+2 |
| * | | Convert WriteNumeric() calls to pass the parameters of the numeric as method ... | Attila Molnar | 2016-02-25 | 1 | -1/+1 |
| * | | Use ERR_YOUREBANNEDCREEP instead of NOTICE when a user is banned.•••This is specified in RFC 1459 so we should probably use it.
| Peter Powell | 2015-01-24 | 1 | -1/+1 |
| * | | Add stdalgo::erase() and use it to simplify code | Attila Molnar | 2014-11-01 | 1 | -6/+2 |
| * | | Access local user list via new UserManager::GetLocalUsers() and make local_us... | Attila Molnar | 2014-07-19 | 1 | -5/+8 |
| * | | Move and rename typedef LocalUserList to UserManager::LocalList | Attila Molnar | 2014-07-19 | 1 | -5/+5 |
| * | | Remove now needless User::ForceNickChange()•••Change call sites to call ChangeNick()
| Attila Molnar | 2014-07-03 | 1 | -1/+1 |
| * | | Change allocation of InspIRCd::BanCache to be physically part of the object c... | Attila Molnar | 2014-06-13 | 1 | -3/+3 |
| * | | Pull in bancache.h from inspircd.h | Attila Molnar | 2014-06-13 | 1 | -1/+0 |
| * | | Omit the server name internally when building a /STATS reply and prepend it l... | Attila Molnar | 2014-01-25 | 1 | -1/+1 |
| * | | Convert LocalUserList to an intrusively linked list | Attila Molnar | 2014-01-24 | 1 | -3/+3 |
| * | | Improve UserManager::QuitUser() and related code•••- Make operreason optional; NULL means same as quitreason
- Remove User::quietquit, it is now handled internally in spanningtree
- Send snotice about quitting remote users from spanningtree
| Attila Molnar | 2014-01-05 | 1 | -2/+2 |
| * | | Rename <options:moronbanner> to <options:xlinemessage>.•••This name is more descriptive of what is actually is used for.
| Peter Powell | 2013-08-10 | 1 | -2/+2 |
| * | | Change the syntax of FOREACH macros to be less dumb. | Adam | 2013-08-04 | 1 | -3/+3 |