| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2023-04-28 | 1 | -1/+1 | |
| * | Fix core_dns rejecting simple hostnames. | 2023-01-13 | 1 | -2/+2 | |
| * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | Add support for escaping hex colour codes•••This is not widely supported but we should have an escape regardless. | 2022-06-19 | 1 | -0/+1 | |
| * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| * | Handle negative times in InspIRCd::Duration. | 2022-02-14 | 1 | -8/+17 | |
| * | Fix a bunch of weird indentation and spacing issues. | 2021-04-27 | 1 | -1/+1 | |
| * | Fix a bunch of really obvious unnecessary includes. | 2021-03-05 | 1 | -2/+0 | |
| * | Update copyright headers. | 2021-03-05 | 1 | -1/+1 | |
| * | Update copyright headers. | 2020-10-30 | 1 | -1/+1 | |
| * | Refactor GenRandomStr for performance and readability. | 2020-09-23 | 1 | -8/+6 | |
| * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| * | Fixes by misspell-fixer | 2020-04-21 | 1 | -1/+1 | |
| * | Update user-facing text and comments of SSL to TLS. | 2020-04-14 | 1 | -1/+1 | |
| * | Update copyright headers. | 2020-01-11 | 1 | -5/+10 | |
| * | Improve behaviour when running as root.•••- Only give the annoying message about root if --runasroot is not specified. - If --runasroot is specified then assume the user knows what they are doing. - Move CheckRoot to a static function in inspircd.cpp. | 2019-12-08 | 1 | -12/+0 | |
| * | DurationString(): Return "0s" for a duration of 0 (#1677).•••Usually a duration of 0 is not allowed or handled separately, but it can also be used as a 'no set time' without separation. Case in point: m_chanhistory calls DurationString() to convert the max time seconds back to a human readable string for the mode serializer. Returning a blank string is bad here. | 2019-07-04 | 1 | -0/+3 | |
| * | Fix years being offset from weeks (#1678).•••Currently a duration of 52w will return a blank string. When I added weeks to the calculations, I failed to update the number of seconds to a year. As 365 days and 52 weeks aren't the same, but the calculation needs to be consistent. | 2019-07-04 | 1 | -1/+1 | |
| * | 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). | 2019-02-18 | 1 | -0/+28 | |
| * | Only parse valid durations, don't treat invalid multipliers as seconds (#1538) | 2018-12-21 | 1 | -39/+38 | |
| * | Move IsValidDuration into the core. | 2018-11-24 | 1 | -2/+40 | |
| * | Add missing special character for reversing color. | 2018-11-20 | 1 | -0/+1 | |
| * | Fix single backslashes in the MOTD erroneously being removed. | 2018-11-18 | 1 | -1/+1 | |
| * | Use arc4random_buf() instead of random() when available. | 2018-07-20 | 1 | -3/+7 | |
| * | Add InspIRCd::IsHost for checking the validity of hostnames. | 2018-07-10 | 1 | -0/+59 | |
| * | Improve support for MOTD escape codes.•••- Implement escapes for italic, monospace, and strikethrough. - Use the escape codes in the example MOTDs to demonstrate their formatting effects. - Remove support for octal escape codes. In modern computing octal is rarely used and is confusing for users who might confuse it for decimal. | 2018-04-22 | 1 | -13/+14 | |
| * | Make InspIRCd::Format return std::string instead of const char*.•••Using the latter is problematic as if you don't copy the return value before calling Format again your formatted message will be overwritten by something else. This bug was observed in m_callerid where InspIRCd::Format was being used for formatting two arguments the latter of which was being overwritten with the former. We could have preserved the return type and just copied the string but then callers would have had to deallocate the string once they have finished with it which is an undesirabable burden to put on callers. | 2018-01-03 | 1 | -4/+4 | |
| * | Use GetMaxMask in InspIRCd::IsValidMask instead of hardcoding 250. | 2017-12-19 | 1 | -1/+1 | |
| * | Convert GenRandom to std::function. | 2017-11-25 | 1 | -1/+1 | |
| * | Convert IsChannel to std::function. | 2017-11-25 | 1 | -1/+1 | |
| * | Convert IsIdent to std::function. | 2017-11-25 | 1 | -1/+1 | |
| * | Convert IsNick to std::function. | 2017-11-25 | 1 | -1/+1 | |
| * | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 1 | -2/+2 | |
| * | Switch the default datetime format to something easier to read. | 2017-10-20 | 1 | -1/+1 | |
| * | Move the OnCheckExemption hook out of the core. | 2017-03-20 | 1 | -25/+0 | |
| * | Fix InspIRCd::StripColor() stripping characters that shouldn't be stripped | 2015-12-29 | 1 | -1/+1 | |
| * | Strip all control codes except \001 in InspIRCd::StripColor()•••Fixes issue #1100 reported by @uecasm | 2015-12-08 | 1 | -1/+2 | |
| * | Deduplicate code in InspIRCd::FindNick() | 2015-12-07 | 1 | -8/+1 | |
| * | Move InspIRCd::SendError() to cmd_die•••Fix multiple ERROR messages being sent to unregistered users by removing the "Exiting with status..." message | 2015-05-17 | 1 | -19/+0 | |
| * | Move OnWhois* events to core_whois, add Whois::Context•••Remove InspIRCd::SendWhoisLine() | 2015-04-28 | 1 | -20/+0 | |
| * | Prepend target user nick to whois numerics in InspIRCd::SendWhoisLine() | 2015-04-28 | 1 | -1/+3 | |
| * | Access local user list via new UserManager::GetLocalUsers() and make local_us... | 2014-07-19 | 1 | -1/+2 | |
| * | Move and rename typedef LocalUserList to UserManager::LocalList | 2014-07-19 | 1 | -1/+1 | |
| * | Add parameter to InspIRCd::TimeString for UTC time formats.•••Missing doc added by @attilamolnar | 2014-06-25 | 1 | -2/+2 | |
| * | Add formatting to InspIRCd::TimeString; switch all code to use it.•••m_httpd also now uses the correct timestamp format. Windows-specific fixes by @attilamolnar, original PR #849 | 2014-06-25 | 1 | -2/+10 | |
| * | Switch to std::string::compare() from substr() in a couple of places | 2014-05-26 | 1 | -1/+1 | |
| * | Change allocation of UserManager::clientlist to be physically part of the obj... | 2014-03-15 | 1 | -4/+4 | |
| * | Change allocation of UserManager::uuidlist to be physically part of the objec... | 2014-03-14 | 1 | -2/+2 | |
| * | Change allocation of InspIRCd::chanlist to be physically part of the object c... | 2014-03-14 | 1 | -2/+2 | |
| * | Move server description field from TreeServer into Server; remove OnGetServer... | 2014-01-05 | 1 | -17/+0 |
