| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Release v3.0.0 alpha 4. v3.0.0a4 | 2017-12-11 | 1 | -1/+1 | |
| * | Merge branch 'insp20' into master. | 2017-12-11 | 2 | -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. | 2017-11-28 | 2 | -2/+2 | |
| * | | Merge pull request #1423 from B00mX0r/master+override_umode•••Add optional oper override umode +O. | 2017-12-11 | 1 | -2/+21 | |
| |\ \ | |||||
| | * | | Add optional oper override umode +O. | 2017-12-11 | 1 | -2/+21 | |
| * | | | Ensure that ModeParser doesn't try to process a non-existent mode.•••This fixes #1431 and closes #1432. | 2017-12-11 | 1 | -0/+6 | |
| |/ / | |||||
| * | | Require that the services server be configured in <sasl:target>.•••Closes #1430. | 2017-12-10 | 1 | -1/+5 | |
| * | | Extract RFC modes from the core to core_channel and core_user. | 2017-12-10 | 13 | -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. | 2017-12-09 | 3 | -14/+40 | |
| * | | Add names for a bunch more numerics. | 2017-12-09 | 7 | -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. | 2017-12-03 | 1 | -26/+21 | |
| * | | Send a snotice when m_filter kills or G-Lines a client.•••Closes #1264. | 2017-12-03 | 1 | -0/+2 | |
| * | | Add SSL cert info to connect class debug log.•••Closes #634. | 2017-12-03 | 1 | -0/+2 | |
| * | | Removed config option for +L redirect.•••Closes #466. | 2017-12-03 | 1 | -24/+4 | |
| * | | Move OnSync{Channel,Network,User} to ServerEventListener. | 2017-12-03 | 3 | -10/+10 | |
| * | | Rename the spanningtree module header to server.•••In the future we will have server linking modules that are not the spanningtree module. | 2017-12-03 | 4 | -10/+10 | |
| * | | Merge pull request #1417 from B00mX0r/master+fix_1416•••Fix m_cloaking umode desync | 2017-12-03 | 1 | -4/+15 | |
| |\ \ | |||||
| | * | | Fix m_cloaking umode syncing•••Servers will now correctly show whether a remote user has +x or not. | 2017-11-26 | 1 | -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. | 2017-11-30 | 2 | -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. | 2017-11-30 | 1 | -4/+3 | |
| * | | | Use ERR_INVALIDUSERNAME rather than ERR_NEEDMOREPARAMS in USER.•••This numeric is a lot more friendly for clients to deal with. | 2017-11-28 | 1 | -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. | 2017-11-27 | 1 | -6/+0 | |
| * | | | Fix action extbans not triggering•••This fixes a reversion from ebe5b20 | 2017-11-26 | 1 | -1/+4 | |
| |/ / | |||||
| * | | Convert the remaining things away from the caller/handler API. | 2017-11-25 | 2 | -2/+2 | |
| * | | Convert GenRandom to std::function. | 2017-11-25 | 3 | -7/+6 | |
| * | | Convert IsChannel to std::function. | 2017-11-25 | 3 | -7/+6 | |
| * | | Convert IsIdent to std::function. | 2017-11-25 | 2 | -2/+2 | |
| * | | Convert IsNick to std::function. | 2017-11-25 | 3 | -7/+6 | |
| * | | Fix a minor typo in core_channel. | 2017-11-25 | 1 | -1/+1 | |
| * | | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs. | 2017-11-21 | 113 | -294/+292 | |
| * | | Inherit non-core connect class settings properly.•••Based partially on a patch by Attila. | 2017-11-20 | 1 | -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. | 2017-11-17 | 2 | -13/+110 | |
| * | | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 38 | -79/+90 | |
| * | | Add events which are fired when a service is added or deleted. | 2017-11-16 | 2 | -53/+23 | |
| * | | Add a class which encapsulates the concept of token lists. | 2017-11-13 | 3 | -31/+118 | |
| * | | Release v3.0.0 alpha 3. v3.0.0a3 | 2017-11-13 | 1 | -1/+1 | |
| * | | Unite SSL service providers and SSL profile classes | 2017-11-13 | 4 | -157/+217 | |
| * | | Only subclass Simple{Channel,User}ModeHandler when necessary. | 2017-11-13 | 13 | -158/+40 | |
| * | | Add the m_ircv3_sts module which implements the IRCv3 STS spec. | 2017-11-13 | 1 | -0/+181 | |
| * | | Merge tag 'v2.0.25' into master. | 2017-11-12 | 8 | -16/+23 | |
| |\| | |||||
| | * | Release v2.0.25 v2.0.25 | 2017-11-12 | 1 | -1/+1 | |
| | * | Work around removing shuns on nicks when the nick is online. | 2017-11-09 | 1 | -2/+6 | |
| | * | Revert the code changes to m_sasl made in commit 9d4b4344b4.•••This is causing problems such as duplicate 904 messages. | 2017-11-09 | 1 | -4/+0 | |
| | * | Improve (synchronize) the notices in m_timedbans•••* Send to remote servers upon setting * Send to halfop if available upon expiry | 2017-11-06 | 1 | -4/+10 | |
| | * | Merge pull request #1359 from genius3000/insp20+sasl_no_server•••2.0: Inform the client when a SASL message cannot be sent | 2017-11-06 | 1 | -0/+4 | |
| | |\ | |||||
| | | * | Inform the client when a SASL message cannot be sent•••When SASL is properly configured with a 'target' server, we are able to inform the client when the message fails to send. Currently if a target is configured and it is offline, no response is sent. This can cause some clients to time out while waiting for a response. If a target isn't configured, behaviour will not change with this commit. The default of '*' will still send to all servers. Updated example config with 'target' variable. | 2017-11-05 | 1 | -0/+4 | |
| | * | | Use InvalidateCache in the sockaddrs overload of OnSetClientIP.•••This was done to the string variant in d3b82b2f7f. | 2017-11-05 | 1 | -2/+1 | |
| | * | | Fix CMD_RESTART with relative paths as argv[0]. | 2017-11-04 | 1 | -2/+2 | |
| | * | | ConfigReader: fix compilers optimizing NULL check in ConfigTag::readString()•••See: 66f82ccf926aac39273bfc652c85c08080cc9a46 Fixes inspircd/inspircd-extras#110 | 2017-10-26 | 1 | -3/+6 | |
| | * | | Fix sending a malformed 410 numeric when sent empty CAP commands. | 2017-10-18 | 1 | -1/+1 | |
