aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-1/+1
|\
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-1/+1
| |
* | Use the contents of the link data map when using the 1206 protocol.Gravatar Sadie Powell2021-05-101-10/+35
| | | | | | | | | | | | | | Still to do: - Extract URL encoding to inspstring. - Use CompareLinkData when using the 1206 protocol. - Show friendlier messages when a link compatibility is encountered.
* | Add a new map-based method for building link data.Gravatar Sadie Powell2021-05-101-11/+8
| | | | | | | | | | The new link data is not currently used but will be in the near future.
* | Remove some useless getter methods and make the members public.Gravatar Sadie Powell2021-04-141-1/+1
| | | | | | | | | | This isn't part of a public API so we don't need to care about exposing implementation details.
* | Refer to encryption as TLS instead of SSL in all messages.Gravatar Sadie Powell2021-04-081-1/+1
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-22/+12
| |
* | Fix the setter and set time of list modes being lost on netburst.Gravatar Sadie Powell2021-03-301-7/+30
| | | | | | | | Closes #1812.
* | Add the ~ server tag prefix.Gravatar Sadie Powell2021-03-301-0/+1
| | | | | | | | This is used for sending arbitrarily tagged messages between servers.
* | Refactor classbase/CullResult into Cullable/Cullable::Result.Gravatar Sadie Powell2021-03-021-3/+3
| |
* | Replace all internal references to uline with services.Gravatar Sadie Powell2021-01-301-5/+5
| |
* | Rename <security:hideulines> to <security:hideservices>.Gravatar Sadie Powell2021-01-301-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-12-211-1/+1
|\|
| * Hide the server name/desc better when <options:hideserver> is set.Gravatar Sadie Powell2020-12-201-1/+1
| |
* | Convert FOREACH_MOD_CUSTOM to a variadic function.Gravatar Sadie Powell2020-11-101-1/+1
| |
* | Fix the case of getError/getSendQSize and rewrite the doc comments.Gravatar Sadie Powell2020-07-201-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-1/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-0/+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-7/+5
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-9/+8
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-091-3/+3
|\|
| * Add back the prefix on a server target message.Gravatar Matt Schatz2020-03-311-2/+2
| | | | | | | | | | The prefix is dropped when building the message. We add it back here so that the remote servers can recognize it as a server target.
| * Fix various documentation and formatting issues.Gravatar Sadie Powell2020-03-301-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-191-5/+1
|\|
| * Add HasFd to EventHandler and switch code to use it.Gravatar Sadie Powell2020-02-151-5/+1
| |
* | Use C++11 inline initialisation for class members.Gravatar Sadie Powell2020-02-061-2/+0
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-5/+9
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-4/+8
| |
| * 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/+1
|\|
| * Mark messages from ulined clients with the inspircd.org/service tag.Gravatar Peter Powell2019-12-291-0/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-11-131-2/+9
|\|
| * SQuit all servers when a shutdown happens.Gravatar Peter Powell2019-10-171-0/+7
| |
| * Add whether the server split with an error to OnServerSplit.Gravatar Peter Powell2019-09-231-1/+1
| |
| * Add the server id to the Server class.Gravatar Peter Powell2019-09-231-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-08-091-1/+1
|\|
| * Add {To,From}{Human,Internal,Network} to ExtensionItem.Gravatar Peter Powell2019-08-071-1/+1
| | | | | | | | Also, deprecate the old SerializeFormat/serialize/unserialise API.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-271-22/+22
|\|
| * Add an event for adding tags to S2S messages.Gravatar Peter Powell2019-07-191-1/+1
| |
| * Get rid of CommandBuilder::push_back.Gravatar Peter Powell2019-07-191-18/+18
| |
| * spanningtree: Never send a message to a raw UUID in CmdBuilder.Gravatar Peter Powell2019-07-191-3/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-25/+67
|\|
| * Split ServerEventListener into {Broadcast,Link,Sync}EventListener.Gravatar Peter Powell2019-07-151-2/+4
| | | | | | | | | | | | | | | | 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
| * Replace large if/else blocks for target.type with switches (#1668).Gravatar linuxdaemon2019-06-241-21/+27
| |
| * Fix msgid inconsistencies with TAGMSGGravatar linuxdaemon2019-06-221-0/+37
| | | | | | | | | | Also fixes accidentally copying incoming tags on TAGMSG when sending to other users
| * Add irc::sockets::isunix for checking if a file is a UNIX socket.Gravatar Peter Powell2019-05-291-4/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-31/+15
|\|