aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* | Move the contents of commands to command_parse.Gravatar Sadie Powell2023-05-082-121/+96
* | Move CheckPassword to helperfuncs.Gravatar Sadie Powell2023-05-082-20/+20
* | Fix some uses of NULL that have snuck back in during a merge.Gravatar Sadie Powell2023-05-071-1/+1
* | Use GetPrintable in more places in the codepage module.Gravatar Sadie Powell2023-05-071-3/+2
* | Fix narrowing unsigned long to uint32_t in the codepage module.Gravatar Sadie Powell2023-05-071-8/+8
* | Improve the config error messages in the codepage module.Gravatar Sadie Powell2023-05-071-4/+12
* | Tighten up the rules for nicknames to match the Modern IRC spec.Gravatar Sadie Powell2023-05-071-8/+33
* | Allow customising who can receive the joinflood close notification.•••Closes #1747. Gravatar Sadie Powell2023-05-071-1/+5
* | Check whether IPPROTO_SCTP works before trying to implicitly multistack.•••Fixes bind warnings on platforms which have IPPROTO_SCTP defined but don't actually have support at runtime. Gravatar Sadie Powell2023-05-041-1/+19
* | Remove the now-obsolete hostchange module.•••Closes #2025. Gravatar Sadie Powell2023-05-022-270/+0
* | Add the cloak_static module to cloak using a fixed value.Gravatar Sadie Powell2023-05-021-0/+84
* | Add the cloak_nick module to cloak based on a nickname.Gravatar Sadie Powell2023-05-021-0/+143
* | Add the cloak_account module to cloak based on an account name/id.Gravatar Sadie Powell2023-05-021-0/+191
* | Add <cloak:class> to limit cloaks to a specific connect class.Gravatar Sadie Powell2023-05-022-4/+4
* | IPv6 addresses should be partially expanded with '0' not 0x0.Gravatar Sadie Powell2023-04-291-1/+1
* | Fix a copy/paste error in GetUserAddress.Gravatar Sadie Powell2023-04-291-1/+1
* | Fix binding to IPv6 endpoints on Windows.•••sockaddr_in6 has additional members on Windows that need to be zeroed. Gravatar Sadie Powell2023-04-281-1/+1
* | Remove a renamed module that snuck back in during a merge.Gravatar Sadie Powell2023-04-281-109/+0
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-2818-18/+126
|\|
| * Release v3.16.0. v3.16.0Gravatar Sadie Powell2023-04-281-1/+1
| * Update copyright headers.Gravatar InspIRCd Robot2023-04-2819-20/+19
* | Fix narrowing of the config in the messageflood module.Gravatar Sadie Powell2023-04-271-3/+3
* | Restore the last socket error properly on Windows.Gravatar Sadie Powell2023-04-271-0/+8
* | Use the correct socket error messages on Windows.Gravatar Sadie Powell2023-04-271-3/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-276-21/+176
|\|
| * Fix an off by one error in the rmode module.Gravatar Sadie Powell2023-04-211-1/+1
| * Warn users when their client certificate is about to expire.•••Closes #1938. Gravatar Sadie Powell2023-03-011-0/+15
| * Add client cert activation/expiration times to the ssl_cert class.Gravatar Sadie Powell2023-03-013-10/+72
| * Fix destroying duplicate channels when the casemapping changes.Gravatar Sadie Powell2023-03-011-0/+53
| * Fix renicking duplicate users when the casemapping changes.Gravatar Sadie Powell2023-03-011-11/+36
* | Allow using rmode on a prefix char and mode name.Gravatar Sadie Powell2023-04-211-3/+16
* | Allow also using a prefix chat in autoop and exemptchanops.Gravatar Sadie Powell2023-04-212-2/+12
* | Replace <sqlauth:allowpattern> with <sqlexemption>.•••Partially implements #2030. Gravatar Sadie Powell2023-04-201-4/+15
* | Merge <ldapauth:allowpattern> and <ldapwhitelist>.•••Closes #1478. Gravatar Sadie Powell2023-04-201-28/+22
* | <link:sctp> is for outgoing connections not incoming connections.Gravatar Sadie Powell2023-04-201-1/+1
* | Allow limiting chanhistory only by the number of lines or duration.Gravatar Sadie Powell2023-04-201-4/+4
* | Fix parsing <chanhistory:maxduration>.•••Closes #2032. Gravatar Sadie Powell2023-04-201-1/+1
* | Allow customising the message shown when hiding an X-line ban.Gravatar Sadie Powell2023-04-183-10/+24
* | Marginally improve the performance of JSON logging.Gravatar Sadie Powell2023-03-241-4/+4
* | The services module does not require an account API instance.Gravatar Sadie Powell2023-03-241-3/+0
* | Send ERR_NOPERMFORHOST when a user hits a deny class.Gravatar Sadie Powell2023-03-241-1/+4
* | Fix a segfault when sending data to a user without a connect class.Gravatar Sadie Powell2023-03-241-2/+3
* | Send ERR_PASSWDMISMATCH when the user specifies the wrong password.•••Closes #1099. Gravatar Sadie Powell2023-03-241-0/+4
* | Allow modules to provide an error for when a class doesn't match.Gravatar Sadie Powell2023-03-249-9/+13
* | Release v4.0.0 alpha 20. v4.0.0a20Gravatar Sadie Powell2023-03-011-1/+1
* | Update the module descriptions.Gravatar Sadie Powell2023-02-281-1/+1
* | Refactor InspIRCd::SignalHandler.Gravatar Sadie Powell2023-02-281-10/+14
* | Remove GetSID, rename sid to ServerId.Gravatar Sadie Powell2023-02-2813-24/+39
* | Remove an unnecessary function call in the pbkdf2 module.Gravatar Sadie Powell2023-02-281-6/+1
* | Refactor the password checking API.•••- Rename from (On)PassCompare to (On)CheckPassword. - Fix the order of the arguments to be password, hash, value. This makes more sense than what it was previously. - Fix the code documentation to not be complete nonsense and not reference ancient outdated APIs. Gravatar Sadie Powell2023-02-288-25/+25