| Commit message (Expand) | Author | Age | Files | Lines |
| * | Parse CAPAB CAPABILITIES and FJOIN messages with spacesepstream.•••Special tokenisation rules are not necessary here.
| Peter Powell | 2018-08-10 | 2 | -2/+2 |
| * | Remove the original line parameter of On{Pre,Post}Command.•••In the brave new world of message tags and alternate wire formats
this is no longer something that is appropriate to expose.
In reality it was only ever used by m_alias which now reconstitutes
the command name and parameters into a RFC 1459-style message for
whatever it needs to do.
| Peter Powell | 2018-08-10 | 20 | -29/+44 |
| * | Switch m_xline_db to use the xline snomask character. | Peter Powell | 2018-08-10 | 1 | -6/+6 |
| * | Switch m_dnsbl to use its own snomask character. | Peter Powell | 2018-08-07 | 1 | -7/+12 |
| * | Remove the 'debug' snotice character. | Peter Powell | 2018-08-07 | 4 | -6/+5 |
| * | Make the FJOIN timestamp message easier for users to understand. | Peter Powell | 2018-08-05 | 1 | -1/+2 |
| * | Remove support for static modules.•••This has been frequently broken in the past and as far as I know is
used by literally nobody.
Also, even if all modules are compiled into the core any libraries
linked against are and have always been linked dynamically making
this unusable on platforms without dynamic libraries.
| Peter Powell | 2018-07-31 | 3 | -156/+0 |
| * | Rename User::fullname to realname and make it private. | Peter Powell | 2018-07-30 | 12 | -23/+29 |
| * | Replace most usages of "name" with "real" or "real name". | Peter Powell | 2018-07-30 | 7 | -10/+10 |
| * | Replace most usages of "GECOS" with "real" or "real name". | Peter Powell | 2018-07-30 | 11 | -18/+21 |
| * | Replace irc::stringjoiner with a generic stdalgo::string::join.•••This can also be used with different types of collection containing
values which are not a string.
| Peter Powell | 2018-07-26 | 5 | -21/+5 |
| * | Use CommandBase::Params instead of std::vector<std::string>.•••This is presently a typedef but will soon be replaced with a class
that encapsulates both tags and parameters.
| Peter Powell | 2018-07-26 | 168 | -410/+418 |
| * | Add a module which implements the HAProxy PROXY v2 protocol. | Peter Powell | 2018-07-26 | 2 | -0/+332 |
| * | Make more config stuff case insensitive. | Peter Powell | 2018-07-24 | 20 | -51/+51 |
| * | Fix building on Windows. | Peter Powell | 2018-07-24 | 2 | -1/+5 |
| * | Remove Log() calls made unnecessary by the previous commit. | Peter Powell | 2018-07-20 | 3 | -9/+0 |
| * | Log snotices with their description rather than just as "snomask". | Peter Powell | 2018-07-20 | 1 | -5/+2 |
| * | Use arc4random_buf() instead of random() when available. | Peter Powell | 2018-07-20 | 1 | -3/+7 |
| * | Initial support for listening on UNIX socket endpoints. | Peter Powell | 2018-07-18 | 7 | -104/+241 |
| * | Add the family() member to the sockaddrs union. | Peter Powell | 2018-07-18 | 11 | -35/+40 |
| * | Release v3.0.0 alpha 8. v3.0.0a8 | Peter Powell | 2018-07-15 | 1 | -1/+1 |
| * | Merge branch 'insp20' into master. | Peter Powell | 2018-07-15 | 2 | -2/+1 |
| |\ |
|
| | * | Clean up the WHO helpop documentation. | Peter Powell | 2018-07-12 | 1 | -1/+1 |
| | * | Fix replying with the source user in oper-restricted WHO lookups. | Peter Powell | 2018-07-11 | 1 | -3/+1 |
| | * | Fix invalid conversion from 'const char*' to 'char*' on FreeBSD. | Peter Powell | 2018-06-08 | 1 | -1/+1 |
| * | | Use mysql_real_escape_string instead of mysql_escape string.•••This is not exploitable as far as I know but it is probably best
that we use the newer function just in case.
Closes #649 (although the attack mentioned in that issue was not
feasible).
| Peter Powell | 2018-07-15 | 1 | -3/+2 |
| * | | Implement support for the WHOX extension.•••This is a massive rewrite of core_who which was initially developed
by Adam in 2014. I have rebased and cleaned it up and tightened up
compliance with the specifications.
Co-authored-by: Adam <Adam@anope.org>
| Peter Powell | 2018-07-12 | 1 | -282/+469 |
| * | | Switch core_dns validation to use InspIRCd::IsHost. | Peter Powell | 2018-07-10 | 1 | -6/+1 |
| * | | Switch <server:name> validation to use InspIRCd::IsHost. | Peter Powell | 2018-07-10 | 1 | -22/+1 |
| * | | Add InspIRCd::IsHost for checking the validity of hostnames. | Peter Powell | 2018-07-10 | 1 | -0/+59 |
| * | | Add a ConfigTag::getString overload that calls a validation method. | Peter Powell | 2018-07-10 | 1 | -0/+15 |
| * | | Allow exempting of registered users from securelist. | Peter Powell | 2018-07-10 | 1 | -1/+9 |
| * | | Add a silent option to <options:restrictbannedusers>.•••This is useful when dealing with spambots that switch method when
they receive ERR_CANNOTSENDTOCHAN.
| Peter Powell | 2018-07-10 | 3 | -6/+17 |
| * | | Use !empty() instead of 'size() > 0' when checking parameter count. | B00mX0r | 2018-07-03 | 4 | -5/+5 |
| * | | Allow relative paths to be passed in --config on boot.•••Closes #1115.
| Peter Powell | 2018-06-25 | 1 | -1/+10 |
| * | | Add --nopid command line option (#1497).•••Add a --nopid command line option, which causes a PID file not to be
written to the file system regardless of the presence of the <pid> tag
in the configuration file or the value of its "file" variable if it is
present. | Chris Novakovic | 2018-06-04 | 1 | -2/+10 |
| * | | Improve support for MOTD escape codes.•••- Implement escapes for italic, monospace, and strikethrough.
- Use the escape codes in the example MOTDs to demonstrate their
formatting effects.
- Remove support for octal escape codes. In modern computing octal
is rarely used and is confusing for users who might confuse it
for decimal.
| Peter Powell | 2018-04-22 | 1 | -13/+14 |
| * | | Always process MOTD formatting escape codes.•••The options for disabling these were added to keep compatibility
with previous 2.0 releases and are not needed any more.
| Peter Powell | 2018-04-22 | 3 | -8/+2 |
| * | | Fix some oversights relating to numerics.•••- ERR_CANNOTSENDTOCHAN only takes the channel name and a message.
- ERR_INVALIDCAPCMD is 410 not 232.
| Peter Powell | 2018-04-22 | 3 | -3/+3 |
| * | | Release v3.0.0 alpha 7. v3.0.0a7 | Peter Powell | 2018-04-22 | 1 | -1/+1 |
| * | | Move a bunch of optional module numerics to the module source file. | Peter Powell | 2018-04-22 | 6 | -3/+35 |
| * | | Replace ERR_{NOCTCPALLOWED,WORDFILTERED} with ERR_CANNOTSENDTOCHAN.•••There is no reason for these responses to have their own numerics
when other modules do not. The only thing this does is make life
harder for client developers.
| Peter Powell | 2018-04-22 | 2 | -2/+2 |
| * | | Merge tag 'v2.0.26' into master. | Peter Powell | 2018-04-22 | 8 | -6/+51 |
| |\| |
|
| | * | Release v2.0.26 v2.0.26 | Peter Powell | 2018-04-20 | 1 | -1/+1 |
| | * | Fix blank instead of empty PART message when a user is shunned | B00mX0r | 2018-04-11 | 1 | -1/+1 |
| | * | Remove swhois messages set in the oper block on deoper.•••Closes #1240.
| Peter Powell | 2018-04-09 | 3 | -4/+35 |
| | * | 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 |
| | * | Set User::host before calling ChangeIP()•••ChangeIP() calls SetClientIP() which revalidates whether the user
matches an ELine. However, because the hostname has not changed yet
the user may incorrectly be marked as non-exempt.
| Peter Powell | 2018-04-06 | 1 | -3/+3 |
| | * | Update the GeoIP ExtItem when CGI:IRC sets the real IP (#1471)•••Since CGI:IRC calls it's 'ChangeIP()' either from 'OnCheckReady()'
or 'OnUserRegister()', both of which are called after the user has
sent NICK/USER, we can safely skip re-setting the ExtItem prior to
this point.
This skips the first 'OnSetUserIP()' from 'User::AddUser()' as
the 'OnSetConnectClass()' catch handles the initial setting. | genius3000 | 2018-03-30 | 1 | -1/+8 |
| | * | m_ssl_openssl: Remove deprecated API members.•••Backported from 2afc1af4639ae2bbef397f4f6acc834950017d91.
| Wade Cline | 2018-03-02 | 1 | -3/+12 |