aboutsummaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Document aligned_storage and use alignment_of_v.Gravatar Sadie Powell2022-01-311-2/+2
|
* Move stdalgo::map::difference to its own utility header.Gravatar Sadie Powell2022-01-312-63/+84
|
* Slim down the protocol interface for sending metadata.Gravatar Sadie Powell2022-01-311-17/+3
|
* Refuse to set an extension on the wrong type of extensible.Gravatar Sadie Powell2022-01-311-2/+10
|
* Make extension names case insensitive.Gravatar Sadie Powell2022-01-311-1/+1
|
* Add the type to the Extensible class.Gravatar Sadie Powell2022-01-312-2/+10
|
* Rename the ExtensionItem::type field to extype to avoid collisions.Gravatar Sadie Powell2022-01-311-1/+1
|
* Fix the case of Membership::GetRank.Gravatar Sadie Powell2022-01-311-1/+1
|
* Replace consolecolors with a vendored library.Gravatar Sadie Powell2022-01-261-172/+0
| | | | | This library supports much more than consolecolors including the Windows 8 console API.
* Slim the included headers down more.Gravatar Sadie Powell2022-01-263-9/+1
|
* Remove duplicate includes from module headers.Gravatar Sadie Powell2022-01-2519-43/+0
|
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-2581-361/+361
|
* Fix a few Doxygen comment errors.Gravatar Sadie Powell2022-01-242-2/+1
|
* Fix the doxygen documentation and style of the extension classes.Gravatar Sadie Powell2022-01-221-137/+175
|
* Fix various edge cases in extensible synchronisation.Gravatar Sadie Powell2022-01-211-13/+23
| | | | | | | | - Fix not forwarding the accountid extensible if it is set. - Rename the variadic Set() overload to SetFwd(). - Re-add the `const T&` overload of Set(). - Move `bool synced` to SimpleExtItem from StringExtItem. - Only sync extensibles if their instance is marked as syncable.
* Fix aliases which require routing to be broadcast out.Gravatar Sadie Powell2022-01-191-7/+7
|
* Use vector<string> instead of file_cache in ProcessColors.Gravatar Sadie Powell2022-01-181-1/+1
|
* Move FilePosition to be with the config stuff it is used by.Gravatar Sadie Powell2022-01-182-24/+24
|
* Replace FileWrapper with std::unique_ptr.Gravatar Sadie Powell2022-01-181-0/+3
|
* Add constexpr to the initialisation of various const static fields.Gravatar Sadie Powell2022-01-187-14/+14
|
* Add constructors to the TokenList class.Gravatar Sadie Powell2022-01-181-0/+6
|
* Revert "Allow setting extension data on connect classes".Gravatar Sadie Powell2022-01-162-4/+0
| | | | | | | This can't reasonably be implemented safely with the current way that extensibles work. This reverts commit b867007d201b1a3b130186c54e41481c0374a7f6.
* Add ConnectClass::Ptr as an alias for std::shared_ptr<ConnectClass>.Gravatar Sadie Powell2022-01-164-7/+10
|
* Make 005 dependent on the connect class.Gravatar Sadie Powell2022-01-161-1/+2
|
* Allow setting extension data on connect classes.Gravatar Sadie Powell2022-01-163-3/+5
|
* Fix the previous commit on Windows.Gravatar Sadie Powell2022-01-161-1/+1
|
* Replace uses of the FileSystem class with std::filesystem.Gravatar Sadie Powell2022-01-152-38/+12
|
* Add the ATTR_NOT_NULL define for marking arguments that can't be null.Gravatar Sadie Powell2022-01-151-0/+12
|
* Rename CUSTOM_PRINTF to ATTR_PRINTF.Gravatar Sadie Powell2022-01-155-12/+13
| | | | | | | | ATTR_* matches the naming scheme which will be used for function attributes from now on. Also, redocument it to have a better description and allow Doxygen to parse it.
* Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-079-69/+93
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-01-037-6/+15
|\
| * Release v3.12.0. v3.12.0Gravatar Sadie Powell2021-12-311-1/+1
| |
| * Update copyright headers.Gravatar InspIRCd Robot2021-12-307-6/+7
| |
| * Send an account id tag when account-tag & message-tags are enabled.Gravatar Sadie Powell2021-12-282-0/+8
| |
* | Make all extensibles use kebab-case for names where possible.Gravatar Sadie Powell2021-12-261-1/+1
| |
* | Move RPL_STATS to the stats header.Gravatar Sadie Powell2021-12-242-1/+6
| |
* | Add a quick method for adding a generic RPL_STATS row.Gravatar Sadie Powell2021-12-241-0/+12
| |
* | Move DNS stats to core_dns.Gravatar Sadie Powell2021-12-241-16/+0
| |
* | Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-233-21/+21
| |
* | Add the final keyword to all remaining classes that can have it.Gravatar Sadie Powell2021-12-2065-187/+317
| |
* | Mark Regex::Engine::Create{Human,} as const.Gravatar Sadie Powell2021-12-161-4/+4
| |
* | Make upper case regex flags remove the flag if previously set.Gravatar Sadie Powell2021-12-161-0/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-141-0/+6
|\|
| * If a user has a unique username then include it in bans.Gravatar Sadie Powell2021-12-141-0/+3
| |
| * Sync uniqueusername from the connect class to the user.Gravatar Sadie Powell2021-12-141-0/+3
| | | | | | | | | | This is a massive hack for now but should be made to sync properly in v4 when we have extensibles that don't suck.
* | Replace some references to ssl with tls.Gravatar Sadie Powell2021-12-082-10/+10
| |
* | Move configuration of connect classes to the ConnectClass class.Gravatar Sadie Powell2021-11-241-0/+3
| |
* | Refactor the ClassTypes enum and move into ConnectClass.Gravatar Sadie Powell2021-11-241-15/+17
| |
* | Add sensible defaults and limits to ConnectClass.Gravatar Sadie Powell2021-11-241-18/+18
| |
* | Fix ConnectClass inheriting from refcountbase.Gravatar Sadie Powell2021-11-241-1/+1
| | | | | | | | | | | | This snuck back in during the v3 merge. Closes #1944.