aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree/main.h
Commit message (Expand)AuthorAgeFilesLines
* Add a typedef for a mode rank.Gravatar Sadie Powell2022-05-171-1/+1
* Remove unnecessary arguments to On(Post)Oper.•••These are already accessible from the user object. Gravatar Sadie Powell2022-05-071-1/+1
* Format enums with an underlying type like classes.Gravatar Sadie Powell2022-04-301-1/+2
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-1/+1
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-01-031-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-12-301-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-141-0/+1
|\|
| * Sync uniqueusername from the connect class to the user.•••This is a massive hack for now but should be made to sync properly in v4 when we have extensibles that don't suck. Gravatar Sadie Powell2021-12-141-0/+1
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-1/+1
* | Add the FRHOST command to allow changing a remote user's real host.•••Closes #1803. Gravatar Sadie Powell2021-09-021-1/+2
* | Make the protocol version enum entries slightly less verbose.Gravatar Sadie Powell2021-08-281-4/+4
* | Remove some useless getter methods and make the members public.•••This isn't part of a public API so we don't need to care about exposing implementation details. Gravatar Sadie Powell2021-04-141-17/+3
* | Refer to encryption as TLS instead of SSL in all messages.Gravatar Sadie Powell2021-04-081-1/+1
* | Fix a ton of pedantic compiler warnings.Gravatar Sadie Powell2021-04-041-1/+1
* | Add the ~ server tag prefix.•••This is used for sending arbitrarily tagged messages between servers. Gravatar Sadie Powell2021-03-301-0/+3
* | Refactor classbase/CullResult into Cullable/Cullable::Result.Gravatar Sadie Powell2021-03-021-1/+1
* | Add support for the 1206 spanningtree protocol.•••For now this is identical to 1205 but changes will be happening soon. Gravatar Sadie Powell2020-12-041-2/+5
* | Rip out compatibility code for the 2.0 protocol.Gravatar Sadie Powell2020-05-201-10/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-1/+1
|\|
| * Fixes by misspell-fixerGravatar InspIRCd Robot2020-04-211-1/+1
* | Switch the spanningtree module from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-04-131-2/+2
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-1/+0
* | Use C++11 inline initialisation for class members.Gravatar Sadie Powell2020-02-061-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-5/+10
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-4/+9
| * Add an event provider class for the event/messagetag event.Gravatar Sadie Powell2020-01-031-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-011-0/+4
|\|
| * Mark messages from ulined clients with the inspircd.org/service tag.Gravatar Peter Powell2019-12-291-0/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-11-131-0/+1
|\|
| * SQuit all servers when a shutdown happens.Gravatar Peter Powell2019-10-171-0/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-271-0/+7
|\|
| * Add an event for adding tags to S2S messages.Gravatar Peter Powell2019-07-191-0/+7
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-4/+19
|\|
| * Split ServerEventListener into {Broadcast,Link,Sync}EventListener.•••There is no reason to have these events in one big handler and it causes unnecessary event hooks to be created by having them like this. The ServerEventListener class still exists for compatibility Gravatar Peter Powell2019-07-151-4/+16
| * Fix msgid inconsistencies with TAGMSG•••Also fixes accidentally copying incoming tags on TAGMSG when sending to other users Gravatar linuxdaemon2019-06-221-0/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-13/+23
|\|
| * Add an enumeration for known protocol versions.Gravatar Peter Powell2019-05-141-9/+23
| * Replace ModuleSpanningTree::TimeToStr with InspIRCd::DurationStr.Gravatar Peter Powell2019-05-141-4/+0
| * Merge branch 'insp20' into insp3.Gravatar Peter Powell2019-05-021-1/+1
| |\
| | * Update documentation links.Gravatar Peter Powell2019-04-261-1/+1
* | | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-0/+4
|\| |
| * | Generate the ssl_cert metadata before bursting a connecting user.Gravatar Peter Powell2019-03-141-0/+4
* | | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-32/+32
|/ /
* | Fix message tags not being broadcast across the network.Gravatar Peter Powell2019-01-021-0/+3
* | Fix conversion issues by replacing ConvToInt with ConvToNum<T>.•••The former was a thin wrapper around atol and brought with it all of the weird parsing logic of atol which is almost never what is actually wanted. It also almost never returned the numeric type which is actually wanted which can cause weird issues when casting. Gravatar Peter Powell2018-12-121-2/+2
* | Amend OnPostCommand to specify whether the command is loopcalled.•••This restores previous behaviour which was lost when the original line parameter was removed. Gravatar Peter Powell2018-09-111-1/+1
* | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> Gravatar Peter Powell2018-08-131-1/+1
* | Convert AWAY to use cross-module events and clean up slightly.•••OnSetAway has been replaced with four events. OnUserPreAway and OnUserPreBack can be used to deny an away state change and/or change the away message of a local user. OnUserAway and OnUserBack allow modules to be notified that a user's away state has changed. Gravatar Peter Powell2018-08-121-2/+6
* | Remove the original line parameter of On{Pre,Post}Command.•••In the brave new world of message tags and alternate wire formats this is no longer something that is appropriate to expose. In reality it was only ever used by m_alias which now reconstitutes the command name and parameters into a RFC 1459-style message for whatever it needs to do. Gravatar Peter Powell2018-08-101-2/+2
* | Replace most usages of "name" with "real" or "real name".Gravatar Peter Powell2018-07-301-1/+1