| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Release v3.0.0 alpha 9. v3.0.0a9 | 2018-08-15 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp20' into master. | 2018-08-15 | 1 | -0/+1 | |
| |\ | |||||
| | * | m_httpd: close the HTTP connection after serving a request. | 2018-08-07 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | We always send "Connection: Close" so this is the right behaviour according to section 8.1 of RFC 2616. Closes #1507. | ||||
| * | | Rewrite m_httpd_config. | 2018-08-15 | 1 | -63/+25 | |
| | | | | | | | | | | | | | - 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. | ||||
| * | | Fix aliases that resolve to messages echoing with echo-message. | 2018-08-15 | 6 | -11/+30 | |
| | | | | | | | | | Fixes #1459. | ||||
| * | | Fix m_alias not reconstituting the RFC message properly. | 2018-08-15 | 1 | -2/+2 | |
| | | | |||||
| * | | Fix a bunch more conflicting/unnamed numerics. | 2018-08-14 | 9 | -18/+37 | |
| | | | |||||
| * | | Convert CLONES to use its own numeric and batch the replies. | 2018-08-14 | 1 | -22/+46 | |
| | | | |||||
| * | | Fix some bugs in cidr_mask::str(). | 2018-08-14 | 1 | -1/+2 | |
| | | | | | | | | | | | - Fix a missing break statement causing unintentional fallthrough. - Cast the length to an int to avoid interpreting as a character. | ||||
| * | | Convert m_bcrypt to use a vendored library instead of bundling. | 2018-08-14 | 4 | -888/+950 | |
| | | | |||||
| * | | Add support for vendoring dependencies. | 2018-08-14 | 1 | -4/+26 | |
| | | | |||||
| * | | Rename OnChangeLocalUserHost to OnPreChangeHost for consistency. | 2018-08-14 | 3 | -5/+6 | |
| | | | |||||
| * | | Remove the OnInfo event. | 2018-08-14 | 3 | -15/+2 | |
| | | | | | | | | | | | This is not used by anything and On{Post,Pre}Command hooks can be used if people really want to add stuff to INFO. | ||||
| * | | Replace all references to IRCv3.2 with IRCv3. | 2018-08-13 | 5 | -12/+12 | |
| | | | | | | | | | IRCv3 no longer does versioned releases. | ||||
| * | | Add support for the IRCv3 batch specification. | 2018-08-13 | 4 | -1/+430 | |
| | | | | | | | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com> | ||||
| * | | Add support for the IRCv3 server-time specification. | 2018-08-13 | 4 | -1/+174 | |
| | | | | | | | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com> | ||||
| * | | Add support for the IRCv3 account-tag specification. | 2018-08-13 | 2 | -0/+67 | |
| | | | | | | | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com> | ||||
| * | | Implement IRCv3 message tag support. | 2018-08-13 | 62 | -715/+3020 | |
| | | | | | | | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com> | ||||
| * | | Add an accessor for the last mode change list to ModeParser. | 2018-08-13 | 3 | -2/+6 | |
| | | | | | | | | | GetLastParse will be going away soon. | ||||
| * | | Convert AWAY to use cross-module events and clean up slightly. | 2018-08-12 | 12 | -69/+183 | |
| | | | | | | | | | | | | | | | 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. | ||||
| * | | Pass the Extensible container to ExtensionItem::free(). | 2018-08-12 | 7 | -17/+17 | |
| | | | |||||
| * | | Move message parsing to ProcessBuffer and fix edge cases in it. | 2018-08-10 | 5 | -31/+47 | |
| | | | |||||
| * | | Split irc::tokenparser::GetToken into GetMiddle and GetTrailing. | 2018-08-10 | 8 | -40/+77 | |
| | | | | | | | | | | | This simplifies the logic of irc::tokenparser considerably and removes all of the magic index guessing that was used previously. | ||||
| * | | Remove the integer overloads of irc::tokenparser::GetToken(). | 2018-08-10 | 3 | -29/+4 | |
| | | | | | | | | | | | The int overload was never used and the long overload was used in one place. | ||||
| * | | Parse CAPAB CAPABILITIES and FJOIN messages with spacesepstream. | 2018-08-10 | 2 | -2/+2 | |
| | | | | | | | | | Special tokenisation rules are not necessary here. | ||||
| * | | Remove the original line parameter of On{Pre,Post}Command. | 2018-08-10 | 21 | -33/+46 | |
| | | | | | | | | | | | | | | | | | | | 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. | ||||
| * | | Switch m_xline_db to use the xline snomask character. | 2018-08-10 | 1 | -6/+6 | |
| | | | |||||
| * | | Switch m_dnsbl to use its own snomask character. | 2018-08-07 | 2 | -7/+14 | |
| | | | |||||
| * | | Remove the 'debug' snotice character. | 2018-08-07 | 6 | -8/+5 | |
| | | | |||||
| * | | Make the FJOIN timestamp message easier for users to understand. | 2018-08-05 | 1 | -1/+2 | |
| | | | |||||
| * | | Remove support for static modules. | 2018-07-31 | 9 | -293/+7 | |
| | | | | | | | | | | | | | | | | | | | 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. | ||||
| * | | Rename User::fullname to realname and make it private. | 2018-07-30 | 14 | -31/+36 | |
| | | | |||||
| * | | Replace most usages of "name" with "real" or "real name". | 2018-07-30 | 9 | -13/+13 | |
| | | | |||||
| * | | Replace most usages of "GECOS" with "real" or "real name". | 2018-07-30 | 18 | -40/+43 | |
| | | | |||||
| * | | Replace irc::stringjoiner with a generic stdalgo::string::join. | 2018-07-26 | 8 | -29/+25 | |
| | | | | | | | | | | | This can also be used with different types of collection containing values which are not a string. | ||||
| * | | Use CommandBase::Params instead of std::vector<std::string>. | 2018-07-26 | 176 | -431/+439 | |
| | | | | | | | | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | ||||
| * | | Add a module which implements the HAProxy PROXY v2 protocol. | 2018-07-26 | 5 | -0/+345 | |
| | | | |||||
| * | | Make more config stuff case insensitive. | 2018-07-24 | 20 | -51/+51 | |
| | | | |||||
| * | | Fix building on Windows. | 2018-07-24 | 3 | -1/+13 | |
| | | | |||||
| * | | Rename IntModuleList to Module::List. | 2018-07-24 | 1 | -9/+9 | |
| | | | |||||
| * | | Get rid of the unused string_list typedef. | 2018-07-24 | 1 | -4/+0 | |
| | | | |||||
| * | | Fix the Windows build system to use the new license file location. | 2018-07-23 | 1 | -1/+1 | |
| | | | |||||
| * | | Remove Log() calls made unnecessary by the previous commit. | 2018-07-20 | 3 | -9/+0 | |
| | | | |||||
| * | | Log snotices with their description rather than just as "snomask". | 2018-07-20 | 2 | -6/+2 | |
| | | | |||||
| * | | Define HAS_ARC4RANDOM_BUF in config.h if available. | 2018-07-20 | 1 | -0/+1 | |
| | | | |||||
| * | | Use arc4random_buf() instead of random() when available. | 2018-07-20 | 3 | -3/+34 | |
| | | | |||||
| * | | Initial support for listening on UNIX socket endpoints. | 2018-07-18 | 10 | -104/+253 | |
| | | | |||||
| * | | Add the family() member to the sockaddrs union. | 2018-07-18 | 12 | -35/+42 | |
| | | | |||||
| * | | Release v3.0.0 alpha 8. v3.0.0a8 | 2018-07-15 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp20' into master. | 2018-07-15 | 6 | -59/+125 | |
| |\| | |||||
