aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree/main.h
Commit message (Expand)AuthorAgeFilesLines
* 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
* | Replace most usages of "GECOS" with "real" or "real name".Gravatar Peter Powell2018-07-301-1/+1
* | Use CommandBase::Params instead of std::vector<std::string>.•••This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. Gravatar Peter Powell2018-07-261-7/+7
* | Move OnStats from the core to a cross-module event.•••Some core code still exists in the XLine system but this will be replaced when the XLine system is replaced later. Gravatar Peter Powell2018-04-081-1/+2
* | Rework message handling.•••- Move all message-related types to their own header to make moving them to a cross-module events easier. - Rename OnUserMessage to OnUserPostMessage. - Rename OnText to OnUserMessage. - Replace the dest, target_type, and status parameters with the MessageTarget class. - Replace the text, exempt_list, and msgtype parameters with the MessageDetails struct. - Add echooriginal and originaltext to the MessageDetails struct to allow spam filtering to not be broken by cap echo-message. Gravatar Peter Powell2018-01-061-1/+1
* | Merge tag 'v2.0.25' into master.Gravatar Peter Powell2017-11-121-1/+1
|\|
| * Update wiki links to use HTTPS and point to the correct pages.•••When we release 3.0 these links will break as they will point to the pages for 3.0 rather than 2.0. Gravatar Peter Powell2017-10-151-1/+1
| * m_spanningtree Rebuild serverlist and sidlist when receiving a specific Request•••Issue #923 Gravatar Attila Molnar2014-10-131-0/+1
* | Add CXX11_OVERRIDE to overridden members that lack it.•••This fixes a ton of warnings when building on compilers that default to C++11 or newer. Gravatar Peter Powell2017-07-121-2/+2
* | m_spanningtree Refuse topic changes that would result in desync•••This is a workaround until the protocol is updated Gravatar Attila Molnar2016-09-021-0/+1
* | m_spanningtree Remove ModuleSpanningTree::RemoteMessage()•••This method is no longer used, replacement is User::WriteRemoteNotice() Gravatar Attila Molnar2016-03-011-4/+0
* | Introduce Stats::Context, pass it to the OnStats hook and switch all code to itGravatar Attila Molnar2016-02-251-1/+1