aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* | Fix the casemap name not being copied to the new ServerConfig.Gravatar Peter Powell2017-10-051-0/+1
* | Fix RPL_SERVERVERSION treating the modes as a single parameter.Gravatar Peter Powell2017-10-042-3/+5
* | Switch the WEBIRC command to use SplitCommand.Gravatar Peter Powell2017-10-011-7/+7
* | Remove support for the pass, passfirst, identfirst cgiirc types.•••These methods are not supported by any widely used gateways that I can find. If your gateway uses this then you should rewrite it to use the webirc method. For more details see the IRCv3 WEBIRC specification at http://ircv3.net/specs/extensions/webirc.html. Gravatar Peter Powell2017-09-271-69/+15
* | Convert Disabled[CU]Modes to use a bitset instead of a char array.Gravatar Peter Powell2017-09-183-11/+9
* | Add ModeParser::IsModeChar to standardise mode validation.Gravatar Peter Powell2017-09-182-10/+11
* | Change FailedPortList to store a sockaddrs/int instead of string.Gravatar Peter Powell2017-09-123-4/+3
* | Store the server endpoint as a sockaddrs in ListenSocket.Gravatar Peter Powell2017-09-124-22/+9
* | Get rid of irc::sockets::satoap().•••This function is being misused in all but one scenario. It isn't really worth keeping IMO. Gravatar Peter Powell2017-09-124-14/+5
* | Clean up the <security:runas{user,group}> code.•••- Get rid of unnecessary temporary values. - Remove an erroneous usage comment. - Reset errno before the call to setgroups. - Unify the two stage initialisation of g/u. Gravatar Peter Powell2017-09-121-27/+12
* | Move operquit out of the core and into core_user.Gravatar Peter Powell2017-09-113-5/+6
* | Implement support for configurable casemapping & default to ASCII.Gravatar Peter Powell2017-09-084-8/+36
* | Move RPL_SYNTAX to 650 to prevent a collision with RPL_TEXT.•••Also move the command name to a parameter so that it is more easily parseable by software. Gravatar Peter Powell2017-09-061-1/+1
* | Convert uncontroversial anonymous numerics to use constants.Gravatar Peter Powell2017-09-069-18/+66
* | Change the numerics used by /COMMANDS to avoid a collision.Gravatar Peter Powell2017-09-061-0/+7
* | Improve the /MODULES output.Gravatar Peter Powell2017-09-063-5/+14
* | Add support for length arguments in getString.Gravatar Peter Powell2017-09-033-7/+13
* | Convert a bunch of time-related config options to getDuration.Gravatar Peter Powell2017-09-0313-17/+17
* | Move <dns:timeout> out of the core.Gravatar Peter Powell2017-09-032-3/+1
* | Add a ConfigTag* parameter to the ServerPaths constructor.•••This is used to directly read the settings from the config tag like how ServerLimits works. Gravatar Peter Powell2017-09-031-4/+10
* | Remove module file extensions from user-visible messages.Gravatar Peter Powell2017-08-276-6/+6
* | Update a bunch of references to the old command modules.Gravatar Peter Powell2017-08-272-2/+2
* | Match against core_*.so when looking for core modules.Gravatar Peter Powell2017-08-272-2/+2
* | Make the build reproducible by removing time related macros.•••The compile time on boot is not accurate as it will only change when the translation unit containing it is edited. The startup time in RPL_SERVERCREATED is a lot more useful than the compilation time. ngIRCd also implements this behaviour. Gravatar Peter Powell2017-08-262-2/+2
* | m_chghost: use an iterator instead of a NULL-checking loop.Gravatar Peter Powell2017-08-161-3/+1
* | m_sethost: check the length first for consistency with CHGHOST.Gravatar Peter Powell2017-08-161-6/+6
* | m_sethost: use length() instead of counting in the loop.Gravatar Peter Powell2017-08-161-3/+2
* | Remove <alias:matchcase> and associated code.•••This was never documented and seems pretty useless. Gravatar Peter Powell2017-08-132-47/+2
* | Change the maximum nick/user size to match other implementations.Gravatar Peter Powell2017-08-131-2/+2
* | Use RPL_LUSEROP instead of the raw numeric in m_hideoper.Gravatar Peter Powell2017-08-111-2/+2
* | Fix a broken distro constraint in the m_ssl_openssl PackageInfo.Gravatar Peter Powell2017-08-111-1/+1
* | Purge code for Windows XP and MSVC pre-2015.Gravatar Peter Powell2017-08-063-6/+6
* | Merge pull request #1351 from SaberUK/master+webirc•••Allow filtering WebIRC connections into a connect class by gateway.Gravatar Peter Powell2017-08-051-6/+27
|\ \
| * | Allow filtering WebIRC connections into a connect class by gateway.Gravatar Peter Powell2017-06-221-6/+27
* | | Fix the server failing to rehash when <server:name> is unset.Gravatar Peter Powell2017-07-301-6/+8
* | | Fix exceptions not having a line ending when appending to errmsg.Gravatar Peter Powell2017-07-301-1/+1
* | | Merge pull request #1271 from SaberUK/master+exemption•••Move the OnCheckExemption hook out of the core.Gravatar Peter Powell2017-07-2719-79/+162
|\ \ \
| * | | Move the OnCheckExemption hook out of the core.Gravatar Peter Powell2017-03-2019-79/+162
* | | | Replace the deprecated MAXBANS token with MAXLIST.Gravatar Peter Powell2017-07-243-1/+36
* | | | Add DEFAULT_LIST_SIZE for the default list mode size.Gravatar Peter Powell2017-07-241-2/+2
* | | | cmd_kill: deduplicate logicGravatar Adam2017-07-121-20/+12
* | | | cmd_kill: log all kills from or to remote usersGravatar Adam2017-07-121-1/+11
* | | | cmd_kill: correct notices to show as a remote kill when a remote oper kills a...Gravatar Adam2017-07-121-11/+2
* | | | cmd_kill: rename u to targetGravatar Adam2017-07-121-12/+12
* | | | cmd_kill: don't show kill path in KILL messages to usersGravatar Adam2017-07-121-4/+2
* | | | cmd_kill: reshuffleGravatar Adam2017-07-121-70/+68
* | | | Merge pull request #1270 from SaberUK/master+sasl•••Always append the SSL fingerprint even if EXTERNAL is not used.Gravatar Peter Powell2017-07-121-1/+1
|\ \ \ \
| * | | | Always append the SSL fingerprint even if EXTERNAL is not used.Gravatar Peter Powell2016-12-221-1/+1
* | | | | Remove an unused variable in m_cloaking.Gravatar Peter Powell2017-07-121-1/+0
* | | | | Merge pull request #1267 from SaberUK/master+config•••Store config values in a map instead of a unique vector of pairs.Gravatar Peter Powell2017-07-123-15/+14
|\ \ \ \ \