aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Release v4.0.0 alpha 14. v4.0.0a14Gravatar Sadie Powell2022-09-011-1/+1
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-2725-27/+30
|\
| * Release v3.14.0. v3.14.0Gravatar Sadie Powell2022-08-252-2/+2
| |
| * Update copyright headers.Gravatar InspIRCd Robot2022-08-2527-25/+28
| |
| * Use std::string in the Serializer constructor.Gravatar Sadie Powell2022-08-242-3/+3
| |
| * Fix the last modified dates of the man pages.Gravatar Sadie Powell2022-08-243-3/+3
| | | | | | | | | | The Linux man-pages project recommends using YYYY-MM-DD. Some dates had also not been updated since they were added.
* | Replace GetUserCounter() with GetUsers().size().Gravatar Sadie Powell2022-08-249-15/+8
| | | | | | | | | | This method is legacy from when there was a manual user counter and isn't much of a length saving over the unsugared version.
* | Kill some unnecessary misspell-fixer ignore entries.Gravatar Sadie Powell2022-08-241-2/+0
| |
* | Add support for logging JSON to stdout and stderr.Gravatar Sadie Powell2022-08-242-9/+45
| |
* | Fix cached log messages not having the correct timestamp.Gravatar Sadie Powell2022-08-235-17/+23
| |
* | Refactor the core event macros.Gravatar Sadie Powell2022-08-202-67/+51
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-200-0/+0
|\|
| * Fix some warnings in core_who on newer GCC.Gravatar Sadie Powell2022-08-171-3/+4
| |
| * Backport fix for types removed in C++17 from master.Gravatar Sadie Powell2022-08-162-2/+8
| |
* | Move aptosa/untosa into the sockaddrs union and add from/from_ip.Gravatar Sadie Powell2022-08-1116-94/+97
| | | | | | | | | | | | | | The struct will also now always be zero-initialized by default which removes the footgun which has happened previously where the union has been accessed before being initialized leading to it containing weird values.
* | Clean up the sockaddrs documentation comments.Gravatar Sadie Powell2022-08-101-7/+15
| |
* | Rename OnSetUserIP to OnChangeRemoteAddress.Gravatar Sadie Powell2022-08-1011-17/+17
| |
* | Rename SetClientIP to ChangeRemoteAddress.Gravatar Sadie Powell2022-08-105-14/+14
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-103-29/+12
|\|
| * Deprecate the string variant of SetClientIP.Gravatar Sadie Powell2022-08-101-4/+5
| | | | | | | | Nothing uses this anymore.
| * Fix remote users with UNIX socket paths as their sockaddr.Gravatar Sadie Powell2022-08-101-2/+9
| |
| * Fix some harmless debug messages when initializing remote users.Gravatar Sadie Powell2022-08-102-4/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-044-13/+34
|\|
| * Update the Windows dependencies.Gravatar Sadie Powell2022-08-041-5/+5
| | | | | | | | | | | | [skip alpine ci] [skip macos ci] [skip ubuntu ci]
| * Fix a pedantic C++98 warning in the websocket module.Gravatar Sadie Powell2022-08-041-1/+1
| |
| * Expose WebSocket error messages to clients.Gravatar Sadie Powell2022-08-041-6/+27
| |
| * WebSockets are a HTTP feature not a HTML5 feature.Gravatar Sadie Powell2022-08-042-2/+2
| |
* | Release v4.0.0 alpha 13. v4.0.0a13Gravatar Sadie Powell2022-08-011-1/+1
| |
* | Fix the namesx module allocating memory before its needed.Gravatar Sadie Powell2022-07-311-3/+2
| |
* | Modernize various minor legacy C++isms.Gravatar Sadie Powell2022-07-3039-133/+106
| |
* | Add support for clearing the target of a dynamic_reference.Gravatar Sadie Powell2022-07-303-1/+8
| |
* | Fix insp::intrusive_list on libc++.Gravatar Sadie Powell2022-07-261-3/+3
| |
* | Remove some unnecessary getters in ConnectClass.Gravatar Sadie Powell2022-07-226-81/+20
| | | | | | | | All of these members are public anyway.
* | Remove use of the deprecated std::iterator type.Gravatar Sadie Powell2022-07-221-2/+8
| |
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-22124-362/+362
| |
* | Update author list.Gravatar InspIRCd Robot2022-07-221-2/+1
| |
* | Fix mkauthors mishandling coauthor tags with periods at the end.Gravatar Sadie Powell2022-07-221-0/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-07-222-7/+7
|\|
| * Update author list.Gravatar InspIRCd Robot2022-07-201-5/+5
| |
| * Also list coauthors in the author file.Gravatar Sadie Powell2022-07-201-2/+1
| |
* | Improve the performance of AddCommand slightly.Gravatar Sadie Powell2022-07-221-8/+2
| |
* | Kill a now unused field in the showwhois module.Gravatar Sadie Powell2022-07-221-1/+0
| |
* | Update the Alpine container to the latest release.Gravatar Sadie Powell2022-07-221-1/+1
| |
* | Replace <showwhois:showfromopers> with an operator privilege.Gravatar Sadie Powell2022-07-213-10/+5
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-07-195-11/+32
|\|
| * Also use binary exit codes in places that terminate abruptly.Gravatar Sadie Powell2022-07-194-8/+20
| | | | | | | | This is a partial reversion of commit 57330e973b3eb1f2a84803c84daf9d6b420859fd.
| * Allow forcing binary exit codes at compile time.Gravatar Sadie Powell2022-07-191-1/+7
| | | | | | | | | | This is useful with some init systems that handle our exit codes strangely.
| * Allow logrotate to rotate logs with just a pid file.Gravatar Wade Cline2022-07-191-1/+4
| | | | | | Ref: #1991
| * Fix the logrotate config rotating already rotated log files.Gravatar Wade Cline2022-07-111-1/+1
| | | | | | Ref: #1990.
* | Allow remote servers to specify the context of a message.Gravatar Sadie Powell2022-07-012-2/+12
| |