aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
| * | Improve the handling of config X-lines and filters. (#1583)Gravatar Matt Schatz2019-02-224-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. Gravatar Peter Powell2019-02-201-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. Gravatar linuxdaemon2019-02-201-1/+3
| * | Implement support for IRCv3 client-to-client tags.Gravatar Peter Powell2019-02-195-5/+414
| * | Minor text fixes for m_filter.Gravatar Robby2019-02-191-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. Gravatar Matt Schatz2019-02-191-25/+49
| * | Improve support for wildcards in <link:name>.•••Closes #1569. Gravatar Peter Powell2019-02-181-1/+1
| * | Fix MatchCIDR matching UNIX socket hostnames.Gravatar Peter Powell2019-02-181-1/+5
| * | Start using DurationString() in X-line additions and•••a few other modules where it fits better than just showing seconds. Gravatar Matt Schatz2019-02-1812-55/+51
| * | X-line expiries: use the new DurationString() function.Gravatar Matt Schatz2019-02-182-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). Gravatar Matt Schatz2019-02-181-0/+28
| * | Various text improvements: consistency, syntax, help and doc updates/fixes.Gravatar Robby2019-02-1866-87/+87
| * | Fix an off-by-one error in User::GetModeLetters().Gravatar Peter Powell2019-02-171-1/+1
| * | ircv3_chghost: also send the CHGHOST message to the modified user.Gravatar Peter Powell2019-02-161-1/+1
| * | Use the local hostname as the server name if one is not specified.Gravatar Peter Powell2019-02-161-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+ Gravatar Peter Powell2019-02-161-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 Gravatar Sadie Powell2019-03-111-162/+0
* | | Remove support for defaults in find_{compiler,linker}_flags().Gravatar Sadie Powell2019-03-066-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. Gravatar Sadie Powell2019-03-061-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. Gravatar Sadie Powell2019-02-162-169/+9
* | | Remove a "commas at end of enumerator lists on C++03" warning.Gravatar Sadie Powell2019-02-161-11/+0
* | | Replace translation macros with a C++11 initialiser list.Gravatar Sadie Powell2019-02-1515-17/+17
* | | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-1519-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. Gravatar Peter Powell2019-02-152-281/+0
| * | Replace GetServerPort() with server_sa.port().Gravatar Peter Powell2019-02-156-12/+7
| * | Rename User::nping to nextping for consistency with lastping.Gravatar Peter Powell2019-02-153-6/+6
| * | Refactor UserManager::DoBackgroundUserStuff().Gravatar Peter Powell2019-02-151-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). Gravatar Peter Powell2019-02-091-1/+65
| * | Move CommandMessage::Handle into the class definition.Gravatar Peter Powell2019-02-091-24/+29
| * | Move message handling code to Handle{Channel,Server,User}Target.•••This makes the logic for this module considerably easier to read. Gravatar Peter Powell2019-02-091-144/+154
| * | Deduplicate firing module events in core_message.Gravatar Peter Powell2019-02-091-56/+45
| * | core_message: remove unnecessary inheritance logic.Gravatar Peter Powell2019-02-081-27/+17
| * | Rename core_privmsg to core_message.Gravatar Peter Powell2019-02-081-0/+0
| * | Fix erroneously limiting to the size of sa instead of sun_path.Gravatar Peter Powell2019-02-071-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. Gravatar Peter Powell2019-02-071-6/+13
| * | Fix an unintentionally inverted condition in core_oper.Gravatar Peter Powell2019-02-071-1/+1
| * | Don't allow invalid characters in UNIX listener paths.Gravatar linuxdaemon2019-02-061-0/+8
| * | Expand searching in m_httpd_stats, add global handling of GET parameters (#1566)Gravatar linuxdaemon2019-02-064-33/+208
| * | Release v3.0.0 release candidate 2. v3.0.0rc2Gravatar Peter Powell2019-02-061-1/+1
| * | Quit users during cleanup instead of when /DIE is executed.Gravatar Peter Powell2019-02-052-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. Gravatar Peter Powell2019-02-053-432/+0
| * | Move <oper:class> and <oper:vhost> to core_oper.Gravatar Peter Powell2019-02-052-11/+15
* | | Prevent operators from unloading core modules.Gravatar Sadie Powell2019-02-072-12/+2
* | | UserManager: remove fakederef.Gravatar Sadie Powell2019-02-0744-94/+94
* | | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-0790-241/+241
* | | ModuleManager: remove fakederef.Gravatar Sadie Powell2019-02-0742-95/+95
* | | ModeParser: remove fakederef.Gravatar Sadie Powell2019-02-0738-90/+90
* | | LogManager: remove fakederef.Gravatar Sadie Powell2019-02-0782-347/+347
* | | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-0548-297/+539
|\| |
| * | ModuleManager: use std::flush instead of fflush(stdout).Gravatar Peter Powell2019-02-051-4/+2