aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Expand)AuthorAgeFilesLines
...
* | Replace ModeAction with bool.•••This enum is functionally the same as bool but with weird semantics. Gravatar Sadie Powell2023-01-223-19/+10
* | Convert various enums to strongly typed scoped enums.Gravatar Sadie Powell2023-01-224-24/+29
* | Fix some Doxygen comment issues.Gravatar Sadie Powell2023-01-212-1/+2
* | Make implementing OnStreamSocketClose optional in middle hooks.Gravatar Sadie Powell2023-01-211-0/+3
* | Use the underlying transport method for pinging idle clients.•••Closes #1998. Gravatar Sadie Powell2023-01-211-0/+5
* | Fix Cloak::Method and Log::Method being needlessly Cullable.•••If a method needs to be cullable it can inherit from that type and pass Cullable::Deleter as a custom deleter to the shared_ptr. Gravatar Sadie Powell2023-01-182-2/+7
* | Replace SocketEngine::SetReuse with SocketEngine::SetOption.Gravatar Sadie Powell2023-01-171-2/+24
* | Add a helper method for determining if a sockaddrs is an IP endpoint.Gravatar Sadie Powell2023-01-171-0/+3
* | Allow creating a FailedPort without a bindspec.Gravatar Sadie Powell2023-01-171-0/+7
* | Store the actual error in FailedPort instead of an error code.Gravatar Sadie Powell2023-01-161-4/+4
* | Add support for linking servers over SCTP sockets.Gravatar Sadie Powell2023-01-161-2/+3
* | Add support for SCTP listeners.Gravatar Sadie Powell2023-01-162-2/+3
* | Improve the output of /CLOAK when there are no methods available.Gravatar Sadie Powell2023-01-141-2/+2
* | Fix a Doxygen comment typo in Cloak::Method.Gravatar Sadie Powell2023-01-141-1/+1
* | Remove some more unnecessary things from the global headers.Gravatar Sadie Powell2023-01-141-2/+0
* | Various improvements to the cloak system.•••- Only rewrite cloak => cloaking if the cloak_md5 module is also loaded. - Include the cloak method in the link data. - If 1206 servers are using different cloak methods then ignore the other data when telling operators about the link failure. - Clean up the code in a few places. Gravatar Sadie Powell2023-01-131-0/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-131-1/+8
|\|
| * Fix core_dns rejecting simple hostnames.Gravatar Sadie Powell2023-01-131-1/+8
| * Silence a Valgrind warning in SSLIOHook.•••Closes #2011. Gravatar Sadie Powell2023-01-051-0/+1
* | Add a new cloak system that cloaks using HMAC-SHA256.•••Closes #1107. The core of the cloaking algorithm this uses is heavily inspired by the Plexus4 cloak_hmac_sha256 module written by Adam. I've made a few changes to the rest of it to work more like the old InspIRCd cloaking system as well as adding the option for configuring the case of the character table used for cloaking. Co-authored-by: Adam <Adam@anope.org> Co-authored-year: 2017 Gravatar Sadie Powell2023-01-131-1/+1
* | Add the core of the new cloak implementation.Gravatar Sadie Powell2023-01-131-0/+142
* | Const correct various functions.Gravatar Sadie Powell2023-01-111-1/+1
* | Make some functions that don't use `this` static.Gravatar Sadie Powell2023-01-111-1/+1
* | Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-103-4/+4
* | Avoid copying shared_ptr<IOHookProvider> when not necessary.Gravatar Sadie Powell2023-01-102-4/+6
* | Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-106-13/+13
* | Fix calling the base Set/Unset implementation in ListExtItem.Gravatar Sadie Powell2023-01-101-2/+2
* | Deduplicate sending the raw I/O logging warning.Gravatar Sadie Powell2023-01-091-0/+6
* | Rework how users are assigned to connect classes.•••- Move core connect class checks and <performance:clonesonconnect> to the core_user module. - Add pre-change and post-change events for when a connect class changes. - Split explicit class changing out into its own method. - Remove the need to almost always call CheckClass after SetClass. - Add use counting to the connect class instead of relying on the shared_ptr use count. Gravatar Sadie Powell2023-01-084-32/+44
* | Add some overloads of Find{Nick,UUID,} for local/remote users.Gravatar Sadie Powell2023-01-071-0/+68
* | Add a helper class for creating a reference to a DNS manager.Gravatar Sadie Powell2023-01-051-0/+11
* | Allow specifying milliseconds and a timespec in the server-time API.Gravatar Sadie Powell2023-01-041-3/+13
* | Fix getting the full snomask and mode lists.Gravatar Sadie Powell2023-01-021-0/+6
* | Get rid of the virtual Has*Permission methods.•••These are no longer needed now we store privs for the remote oper. Gravatar Sadie Powell2023-01-021-32/+4
* | Allow synching oper privileges between servers.Gravatar Sadie Powell2023-01-021-1/+1
* | Allow getting all of the oper command/mode/snomask privs.Gravatar Sadie Powell2023-01-021-5/+10
* | Add some useful aliases to OperType.Gravatar Sadie Powell2023-01-021-1/+12
* | Add a method for unescaping tags.Gravatar Sadie Powell2023-01-021-1/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-0130-38/+25
|\|
| * Release v3.15.0. v3.15.0Gravatar Sadie Powell2022-12-301-1/+1
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-3034-42/+28
| * Fix building with the Intel C++ compiler.•••- Fix adding -Wshadow in the compiler flags twice. - Detect the new Clang-based Intel compiler as well as the old one. - Silence some deprecation warnings using Intel syntax. Gravatar Sadie Powell2022-12-101-2/+6
* | Rename the SimpleExtItem type parameter to be more descriptive.Gravatar Sadie Powell2022-12-271-11/+11
* | Allow overriding the deleter in ListExtItem.Gravatar Sadie Powell2022-12-271-2/+2
* | Add the SimpleExtItem::GetRef method.Gravatar Sadie Powell2022-12-271-1/+16
* | Add the ListExtItem extension type.Gravatar Sadie Powell2022-12-271-0/+76
* | Move cull_delete to be inside of Cullable.Gravatar Sadie Powell2022-12-273-10/+7
* | Replace the unused `padding` argument of Percent::Encode with `upper`.Gravatar Sadie Powell2022-12-271-7/+7
* | Refactor SocketEngine slightly.•••- Remove pointless shutdown() wrapper. - Remove pointless bounds checking function. - Make Bind and Listen take an EventHandler instead of a fd. - Add nullability attributes to every method. Gravatar Sadie Powell2022-12-251-38/+27
* | Pass the client/server sockaddr around as a ref instead of a ptr.Gravatar Sadie Powell2022-12-254-4/+4