| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | Improve the handling of config X-lines and filters. (#1583) | 2019-02-22 | 4 | -35/+69 | ||
| | * | | Split reading module initialisation and configuration reading.•••This allows modules to register services that other modules may require to be available when reading the configuration. | 2019-02-20 | 1 | -3/+23 | ||
| | * | | Fix not showing all modes on a channel•••Whenever a mode has a parameter, no modes past that mode will be shown in RPL_CHANNELMODEIS. References to items in a vector break when the vector's size is changed. | 2019-02-20 | 1 | -1/+3 | ||
| | * | | Implement support for IRCv3 client-to-client tags. | 2019-02-19 | 5 | -5/+414 | ||
| | * | | Minor text fixes for m_filter. | 2019-02-19 | 1 | -1/+1 | ||
| | * | | Improve the messages in m_filter.•••* Deduplicate "FILTER" in some SNOTICES. * Add the filter reason to removals to match with X-line removals now. * Use the new DurationString() function for a standardized duration display when adding. * Add X-line mask, duration, and expiry date to the action messages. | 2019-02-19 | 1 | -25/+49 | ||
| | * | | Improve support for wildcards in <link:name>.•••Closes #1569. | 2019-02-18 | 1 | -1/+1 | ||
| | * | | Fix MatchCIDR matching UNIX socket hostnames. | 2019-02-18 | 1 | -1/+5 | ||
| | * | | Start using DurationString() in X-line additions and•••a few other modules where it fits better than just showing seconds. | 2019-02-18 | 12 | -55/+51 | ||
| | * | | X-line expiries: use the new DurationString() function. | 2019-02-18 | 2 | -4/+4 | ||
| | * | | Add a function for displaying human-readable durations.•••Add InspIRCd::DurationString() to take a time_t and return a string with the duration in a human-readable format (ex: 1y20w2d3h5m9s). | 2019-02-18 | 1 | -0/+28 | ||
| | * | | Various text improvements: consistency, syntax, help and doc updates/fixes. | 2019-02-18 | 66 | -87/+87 | ||
| | * | | Fix an off-by-one error in User::GetModeLetters(). | 2019-02-17 | 1 | -1/+1 | ||
| | * | | ircv3_chghost: also send the CHGHOST message to the modified user. | 2019-02-16 | 1 | -1/+1 | ||
| | * | | Use the local hostname as the server name if one is not specified. | 2019-02-16 | 1 | -1/+18 | ||
| | * | | Remove obsolete ifdef in m_ssl_gnutls.•••GNUTLS_DIG_SHA256 was added in version 1.7.4 and we require 2.0.0+ | 2019-02-16 | 1 | -2/+0 | ||
| * | | | Remove the flashpolicyd module.•••Browsers will stop supporting Flash at the end of 2020. This branch will not ship before this happens. https://blogs.adobe.com/conversations/2017/07/adobe-flash-update.html | 2019-03-11 | 1 | -162/+0 | ||
| * | | | Remove support for defaults in find_{compiler,linker}_flags(). | 2019-03-06 | 6 | -9/+8 | ||
| * | | | Remove the now obsolete regex_posix module.•••The behaviour of this module is included with the regex_stdlib module. You should use that module in bre mode for basic POSIX regular expressions and ere for extended POSIX regular expressions. | 2019-03-06 | 1 | -94/+0 | ||
| * | | | Remove support for old versions of GnuTLS and OpenSSL.•••GnuTLS v2 has been obsolete since v3 was released over seven years ago and is no longer supported by the maintainers. OpenSSL v1.0 has been obsolete since v1.1 was released over two years ago. It will stop being supported by the maintainers at the end of the year. | 2019-02-16 | 2 | -169/+9 | ||
| * | | | Remove a "commas at end of enumerator lists on C++03" warning. | 2019-02-16 | 1 | -11/+0 | ||
| * | | | Replace translation macros with a C++11 initialiser list. | 2019-02-15 | 15 | -17/+17 | ||
| * | | | Merge branch 'insp3' into master. | 2019-02-15 | 19 | -1202/+742 | ||
| |\| | | ||||||
| | * | | Move the close and jumpserver modules to inspircd-extras.•••- The close module is borderline useless. - The jumpserver numeric is supported by barely any clients and has various security problems. | 2019-02-15 | 2 | -281/+0 | ||
| | * | | Replace GetServerPort() with server_sa.port(). | 2019-02-15 | 6 | -12/+7 | ||
| | * | | Rename User::nping to nextping for consistency with lastping. | 2019-02-15 | 3 | -6/+6 | ||
| | * | | Refactor UserManager::DoBackgroundUserStuff(). | 2019-02-15 | 1 | -46/+55 | ||
| | * | | Implement support for SQUERY from RFC 2812.•••This is treated internally as a PRIVMSG with a few exceptions: 1. The command MUST have exactly one target. 2. The target MUST be a user. 3. The target MUST be on a u-lined server (e.g. NickServ). | 2019-02-09 | 1 | -1/+65 | ||
| | * | | Move CommandMessage::Handle into the class definition. | 2019-02-09 | 1 | -24/+29 | ||
| | * | | Move message handling code to Handle{Channel,Server,User}Target.•••This makes the logic for this module considerably easier to read. | 2019-02-09 | 1 | -144/+154 | ||
| | * | | Deduplicate firing module events in core_message. | 2019-02-09 | 1 | -56/+45 | ||
| | * | | core_message: remove unnecessary inheritance logic. | 2019-02-08 | 1 | -27/+17 | ||
| | * | | Rename core_privmsg to core_message. | 2019-02-08 | 1 | -0/+0 | ||
| | * | | Fix erroneously limiting to the size of sa instead of sun_path. | 2019-02-07 | 1 | -1/+1 | ||
| | * | | Add irc::sockets::untosa() for creating AF_UNIX sockaddrs.•••Also fix an overly long albeit harmless memcpy when creating UNIX socket listeners. Thanks to @psychon for reporting this. | 2019-02-07 | 1 | -6/+13 | ||
| | * | | Fix an unintentionally inverted condition in core_oper. | 2019-02-07 | 1 | -1/+1 | ||
| | * | | Don't allow invalid characters in UNIX listener paths. | 2019-02-06 | 1 | -0/+8 | ||
| | * | | Expand searching in m_httpd_stats, add global handling of GET parameters (#1566) | 2019-02-06 | 4 | -33/+208 | ||
| | * | | Release v3.0.0 release candidate 2. v3.0.0rc2 | 2019-02-06 | 1 | -1/+1 | ||
| | * | | Quit users during cleanup instead of when /DIE is executed. | 2019-02-05 | 2 | -9/+6 | ||
| | * | | Delete the old broken test suite.•••This doesn't work properly and is disabled in both debug & release builds. It will be resurrected with a proper unit testing framework in the future. | 2019-02-05 | 3 | -432/+0 | ||
| | * | | Move <oper:class> and <oper:vhost> to core_oper. | 2019-02-05 | 2 | -11/+15 | ||
| * | | | Prevent operators from unloading core modules. | 2019-02-07 | 2 | -12/+2 | ||
| * | | | UserManager: remove fakederef. | 2019-02-07 | 44 | -94/+94 | ||
| * | | | SnomaskManager: remove fakederef. | 2019-02-07 | 90 | -241/+241 | ||
| * | | | ModuleManager: remove fakederef. | 2019-02-07 | 42 | -95/+95 | ||
| * | | | ModeParser: remove fakederef. | 2019-02-07 | 38 | -90/+90 | ||
| * | | | LogManager: remove fakederef. | 2019-02-07 | 82 | -347/+347 | ||
| * | | | Merge branch 'insp3' into master. | 2019-02-05 | 48 | -297/+539 | ||
| |\| | | ||||||
| | * | | ModuleManager: use std::flush instead of fflush(stdout). | 2019-02-05 | 1 | -4/+2 | ||
