aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Release v3.0.0 alpha 9. v3.0.0a9Gravatar Peter Powell2018-08-151-1/+1
* Merge branch 'insp20' into master.Gravatar Peter Powell2018-08-151-0/+1
|\
| * m_httpd: close the HTTP connection after serving a request.•••We always send "Connection: Close" so this is the right behaviour according to section 8.1 of RFC 2616. Closes #1507. Gravatar Peter Powell2018-08-071-0/+1
* | Rewrite m_httpd_config.•••- Send the configuration as plain text instead of HTML. - Show the location where each tag was located in a comment. - Indent configuration keys consistently so they are easy to read. Gravatar Peter Powell2018-08-151-63/+25
* | Fix aliases that resolve to messages echoing with echo-message.•••Fixes #1459. Gravatar Peter Powell2018-08-155-7/+22
* | Fix m_alias not reconstituting the RFC message properly.Gravatar Peter Powell2018-08-151-2/+2
* | Fix a bunch more conflicting/unnamed numerics.Gravatar Peter Powell2018-08-148-17/+37
* | Convert CLONES to use its own numeric and batch the replies.Gravatar Peter Powell2018-08-141-22/+46
* | Fix some bugs in cidr_mask::str().•••- Fix a missing break statement causing unintentional fallthrough. - Cast the length to an int to avoid interpreting as a character. Gravatar Peter Powell2018-08-141-1/+2
* | Convert m_bcrypt to use a vendored library instead of bundling.Gravatar Peter Powell2018-08-141-888/+3
* | Rename OnChangeLocalUserHost to OnPreChangeHost for consistency.Gravatar Peter Powell2018-08-142-3/+4
* | Remove the OnInfo event.•••This is not used by anything and On{Post,Pre}Command hooks can be used if people really want to add stuff to INFO. Gravatar Peter Powell2018-08-142-2/+1
* | Replace all references to IRCv3.2 with IRCv3.•••IRCv3 no longer does versioned releases. Gravatar Peter Powell2018-08-134-4/+4
* | Add support for the IRCv3 batch specification.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> Gravatar Peter Powell2018-08-132-1/+234
* | Add support for the IRCv3 server-time specification.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> Gravatar Peter Powell2018-08-132-1/+81
* | Add support for the IRCv3 account-tag specification.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> Gravatar Peter Powell2018-08-131-0/+62
* | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> Gravatar Peter Powell2018-08-1344-562/+1199
* | Add an accessor for the last mode change list to ModeParser.•••GetLastParse will be going away soon. Gravatar Peter Powell2018-08-132-2/+2
* | Convert AWAY to use cross-module events and clean up slightly.•••OnSetAway has been replaced with four events. OnUserPreAway and OnUserPreBack can be used to deny an away state change and/or change the away message of a local user. OnUserAway and OnUserBack allow modules to be notified that a user's away state has changed. Gravatar Peter Powell2018-08-129-55/+99
* | Pass the Extensible container to ExtensionItem::free().Gravatar Peter Powell2018-08-126-12/+12
* | Move message parsing to ProcessBuffer and fix edge cases in it.Gravatar Peter Powell2018-08-104-27/+42
* | Split irc::tokenparser::GetToken into GetMiddle and GetTrailing.•••This simplifies the logic of irc::tokenparser considerably and removes all of the magic index guessing that was used previously. Gravatar Peter Powell2018-08-107-34/+59
* | Remove the integer overloads of irc::tokenparser::GetToken().•••The int overload was never used and the long overload was used in one place. Gravatar Peter Powell2018-08-102-17/+4
* | Parse CAPAB CAPABILITIES and FJOIN messages with spacesepstream.•••Special tokenisation rules are not necessary here. Gravatar Peter Powell2018-08-102-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. Gravatar Peter Powell2018-08-1020-29/+44
* | Switch m_xline_db to use the xline snomask character.Gravatar Peter Powell2018-08-101-6/+6
* | Switch m_dnsbl to use its own snomask character.Gravatar Peter Powell2018-08-071-7/+12
* | Remove the 'debug' snotice character.Gravatar Peter Powell2018-08-074-6/+5
* | Make the FJOIN timestamp message easier for users to understand.Gravatar Peter Powell2018-08-051-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. Gravatar Peter Powell2018-07-313-156/+0
* | Rename User::fullname to realname and make it private.Gravatar Peter Powell2018-07-3012-23/+29
* | Replace most usages of "name" with "real" or "real name".Gravatar Peter Powell2018-07-307-10/+10
* | Replace most usages of "GECOS" with "real" or "real name".Gravatar Peter Powell2018-07-3011-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. Gravatar Peter Powell2018-07-265-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. Gravatar Peter Powell2018-07-26168-410/+418
* | Add a module which implements the HAProxy PROXY v2 protocol.Gravatar Peter Powell2018-07-262-0/+332
* | Make more config stuff case insensitive.Gravatar Peter Powell2018-07-2420-51/+51
* | Fix building on Windows.Gravatar Peter Powell2018-07-242-1/+5
* | Remove Log() calls made unnecessary by the previous commit.Gravatar Peter Powell2018-07-203-9/+0
* | Log snotices with their description rather than just as "snomask".Gravatar Peter Powell2018-07-201-5/+2
* | Use arc4random_buf() instead of random() when available.Gravatar Peter Powell2018-07-201-3/+7
* | Initial support for listening on UNIX socket endpoints.Gravatar Peter Powell2018-07-187-104/+241
* | Add the family() member to the sockaddrs union.Gravatar Peter Powell2018-07-1811-35/+40
* | Release v3.0.0 alpha 8. v3.0.0a8Gravatar Peter Powell2018-07-151-1/+1
* | Merge branch 'insp20' into master.Gravatar Peter Powell2018-07-152-2/+1
|\|
| * Clean up the WHO helpop documentation.Gravatar Peter Powell2018-07-121-1/+1
| * Fix replying with the source user in oper-restricted WHO lookups.Gravatar Peter Powell2018-07-111-3/+1
| * Fix invalid conversion from 'const char*' to 'char*' on FreeBSD.Gravatar Peter Powell2018-06-081-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). Gravatar Peter Powell2018-07-151-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> Gravatar Peter Powell2018-07-121-282/+469