aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
| * | | Add snomask alert on m_filter quit/part G-Line•••Resolves an oversight of #1264 Gravatar B00mX0r2017-12-191-0/+1
* | | | Clarify error message when attempting to /NICK while bannedGravatar B00mX0r2017-12-192-2/+3
|/ / /
* | | Merge pull request #1442 from B00mX0r/master+map_version•••Show server versions in /MAP for opersGravatar Peter Powell2017-12-195-1/+24
|\ \ \
| * | | Show server versions in /MAP for opers•••This resolves #1203 Gravatar B00mX0r2017-12-195-1/+24
* | | | Use GetMaxMask in InspIRCd::IsValidMask instead of hardcoding 250.Gravatar Peter Powell2017-12-191-1/+1
|/ / /
* | | Only show a duration in m_chanhistory's notice if one is set.•••Closes #1235. Gravatar Peter Powell2017-12-161-2/+5
* | | Remove usage of deprecated API members in m_ssl_openssl.•••Closes #1440. Gravatar Peter Powell2017-12-161-5/+19
|/ /
* | Don't allow users to set a zero channel limit.•••Closes #451. Gravatar Peter Powell2017-12-113-2/+9
* | Release v3.0.0 alpha 4. v3.0.0a4Gravatar Peter Powell2017-12-111-1/+1
* | Merge branch 'insp20' into master.Gravatar Peter Powell2017-12-112-2/+2
|\|
| * Add length checking to GetExtBanStatus and m_banexception.•••As far as I can tell this is not a problem as all ban masks are canonicalised but its better to be safe than sorry. Gravatar Peter Powell2017-11-282-2/+2
* | Merge pull request #1423 from B00mX0r/master+override_umode•••Add optional oper override umode +O.Gravatar Peter Powell2017-12-111-2/+21
|\ \
| * | Add optional oper override umode +O.Gravatar B00mX0r2017-12-111-2/+21
* | | Ensure that ModeParser doesn't try to process a non-existent mode.•••This fixes #1431 and closes #1432. Gravatar B00mX0r2017-12-111-0/+6
|/ /
* | Require that the services server be configured in <sasl:target>.•••Closes #1430. Gravatar Peter Powell2017-12-101-1/+5
* | Extract RFC modes from the core to core_channel and core_user.Gravatar Peter Powell2017-12-1013-63/+161
* | Clean up numeric usage in WHOIS and WHOWAS.•••- Add constants for all of the used numerics. - Switch RPL_CHANNELSMSG from 336 to 651 to avoid a conflict with RPL_INVITELIST from ircd-hybrid. - Switch RPL_WHOWASIP from 379 to 652 to avoid a conflict with RPL_WHOISMODES from UnrealIRCd. Gravatar Peter Powell2017-12-093-14/+40
* | Add names for a bunch more numerics.Gravatar Peter Powell2017-12-097-9/+54
* | Clean up m_password_hash slightly.•••- Get rid of MakeHash and inline the logic into the actual handler. - Return CMD_FAILURE when password hashing fails for some reason. - Change the module name and description to be more accurate. Gravatar Peter Powell2017-12-031-26/+21
* | Send a snotice when m_filter kills or G-Lines a client.•••Closes #1264. Gravatar ThatOneRoadie2017-12-031-0/+2
* | Add SSL cert info to connect class debug log.•••Closes #634. Gravatar Christopher 'm4z' Holm2017-12-031-0/+2
* | Removed config option for +L redirect.•••Closes #466. Gravatar Shawn Smith2017-12-031-24/+4
* | Move OnSync{Channel,Network,User} to ServerEventListener.Gravatar Peter Powell2017-12-033-10/+10
* | Rename the spanningtree module header to server.•••In the future we will have server linking modules that are not the spanningtree module. Gravatar Peter Powell2017-12-034-10/+10
* | Merge pull request #1417 from B00mX0r/master+fix_1416•••Fix m_cloaking umode desyncGravatar Peter Powell2017-12-031-4/+15
|\ \
| * | Fix m_cloaking umode syncing•••Servers will now correctly show whether a remote user has +x or not. Gravatar B00mX0r2017-11-261-4/+15
* | | Bump the minimum versions of GnuTLS to 2.0.0 and OpenSSL to 1.0.0.•••Old TLS libraries should not be used anymore due to security risks. Gravatar Peter Powell2017-11-302-12/+2
* | | Improve TLS security configuration in m_ssl_openssl.•••- Always disable SSLv3. Unreal has already done this so clients will have to upgrade anyway. - Disable TLSv1.0 by default. Various security standards (e.g. PCI DSS) are already planning on sunsetting this so we should too. Gravatar Peter Powell2017-11-301-4/+3
* | | Use ERR_INVALIDUSERNAME rather than ERR_NEEDMOREPARAMS in USER.•••This numeric is a lot more friendly for clients to deal with. Gravatar Peter Powell2017-11-281-5/+7
* | | Assume that RUSAGE_SELF is always defined.•••This was added for Red Hat 7 which was released in 2000(!) which nobody should be using anymore. Gravatar Peter Powell2017-11-271-6/+0
* | | Fix action extbans not triggering•••This fixes a reversion from ebe5b20 Gravatar B00mX0r2017-11-261-1/+4
|/ /
* | Convert the remaining things away from the caller/handler API.Gravatar Peter Powell2017-11-252-2/+2
* | Convert GenRandom to std::function.Gravatar Peter Powell2017-11-253-7/+6
* | Convert IsChannel to std::function.Gravatar Peter Powell2017-11-253-7/+6
* | Convert IsIdent to std::function.Gravatar Peter Powell2017-11-252-2/+2
* | Convert IsNick to std::function.Gravatar Peter Powell2017-11-253-7/+6
* | Fix a minor typo in core_channel.Gravatar Peter Powell2017-11-251-1/+1
* | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs. Gravatar Peter Powell2017-11-21113-294/+292
* | Inherit non-core connect class settings properly.•••Based partially on a patch by Attila. Gravatar Peter Powell2017-11-201-1/+26
* | Improve LIST and implement more extended list features.•••- Move the ISUPPORT token from the core into core_user and start sending the SAFELIST token to let clients know that they can safely run LIST on big servers. - Add support for the channel creation time (C), topic set time (T), and inverted glob match (N) filters as specified in the draft-hardy-irc-isupport-00 specification. - Clean up the logic for filtering channels by user count. Gravatar Peter Powell2017-11-172-13/+110
* | Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-1738-79/+90
* | Add events which are fired when a service is added or deleted.Gravatar Attila Molnar2017-11-162-53/+23
* | Add a class which encapsulates the concept of token lists.Gravatar Peter Powell2017-11-133-31/+118
* | Release v3.0.0 alpha 3. v3.0.0a3Gravatar Peter Powell2017-11-131-1/+1
* | Unite SSL service providers and SSL profile classesGravatar Attila Molnar2017-11-134-157/+217
* | Only subclass Simple{Channel,User}ModeHandler when necessary.Gravatar Peter Powell2017-11-1313-158/+40
* | Add the m_ircv3_sts module which implements the IRCv3 STS spec.Gravatar Peter Powell2017-11-131-0/+181
* | Merge tag 'v2.0.25' into master.Gravatar Peter Powell2017-11-128-16/+23
|\|
| * Release v2.0.25 v2.0.25Gravatar Peter Powell2017-11-121-1/+1
| * Work around removing shuns on nicks when the nick is online.Gravatar Peter Powell2017-11-091-2/+6