aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2020-07-301-1/+1
* Fix a grammar error created by misspell-fixer.Gravatar Sadie Powell2020-07-031-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2020-04-246-5/+5
* Fixes by misspell-fixerGravatar InspIRCd Robot2020-04-2111-12/+12
* Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
* More HasFd() conversions.Gravatar Sadie Powell2020-04-091-1/+1
* Add back the prefix on a server target message.•••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. Gravatar Matt Schatz2020-03-311-2/+2
* Fix various documentation and formatting issues.Gravatar Sadie Powell2020-03-301-1/+1
* Add a CapReference class for the message-tags capability.Gravatar Sadie Powell2020-03-122-3/+3
* Add HasFd to EventHandler and switch code to use it.Gravatar Sadie Powell2020-02-152-10/+2
* Update copyright headers.Gravatar InspIRCd Robot2020-01-312-2/+2
* Add Channel::WriteRemoteNotice and revert WriteNotice changes.•••This is a partial reversion of 687778b72e. See also: #1749. Gravatar Sadie Powell2020-01-291-5/+3
* Use irc::equals instead of strcasecmp where appropriate.Gravatar Sadie Powell2020-01-171-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2020-01-1157-75/+295
* Add an event provider class for the event/messagetag event.Gravatar Sadie Powell2020-01-032-2/+2
* Update my name and email address.Gravatar Sadie Powell2019-12-312-2/+2
* Fix the previous commit on C++11 compilers.Gravatar Peter Powell2019-12-291-2/+2
* Mark messages from ulined clients with the inspircd.org/service tag.Gravatar Peter Powell2019-12-294-0/+76
* Allow Channel::WriteNotice send to other servers and status ranks.Gravatar Peter Powell2019-11-171-2/+7
* SQuit all servers when a shutdown happens.Gravatar Peter Powell2019-10-172-0/+8
* Fix an shadowing warning in the spanningtree module.Gravatar Peter Powell2019-09-301-2/+2
* Add the OnServerBurst hook and fix the docs for OnServerLink.Gravatar Peter Powell2019-09-231-0/+1
* Add whether the server split with an error to OnServerSplit.Gravatar Peter Powell2019-09-234-11/+13
* Add the server id to the Server class.Gravatar Peter Powell2019-09-2312-29/+38
* Lower the acceptable drift for clocks on link.Gravatar Peter Powell2019-09-201-5/+5
* Add {To,From}{Human,Internal,Network} to ExtensionItem.•••Also, deprecate the old SerializeFormat/serialize/unserialise API. Gravatar Peter Powell2019-08-073-5/+5
* Fix some regressions in sending tags between servers.Gravatar Peter Powell2019-07-222-3/+2
* Add an event for adding tags to S2S messages.Gravatar Peter Powell2019-07-198-25/+74
* Get rid of CommandBuilder::push_back.Gravatar Peter Powell2019-07-197-32/+30
* spanningtree: Never send a message to a raw UUID in CmdBuilder.Gravatar Peter Powell2019-07-1912-16/+21
* 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-155-12/+26
* Fix building on Windows.•••This regression was introduced by #1659. This distinction is only relevant on Windows so this should not affect non-Windows platforms. Gravatar Peter Powell2019-07-041-1/+1
* Replace large if/else blocks for target.type with switches (#1668).Gravatar linuxdaemon2019-06-241-21/+27
* Fix msgid inconsistencies with TAGMSG•••Also fixes accidentally copying incoming tags on TAGMSG when sending to other users Gravatar linuxdaemon2019-06-222-0/+40
* Replace all abstract usages of his/he/her with they/their/it.Gravatar Peter Powell2019-06-071-1/+1
* CoreExport for CommandSave. fixes #1635Gravatar Ben Harris2019-06-071-1/+1
* Add irc::sockets::isunix for checking if a file is a UNIX socket.Gravatar Peter Powell2019-05-291-4/+1
* Fix space separation for CAPAB module listGravatar linuxdaemon2019-05-151-7/+6
* Add an enumeration for known protocol versions.Gravatar Peter Powell2019-05-144-28/+43
* If a parent server is hidden then also hide its child servers.•••This should fix #851. Gravatar Peter Powell2019-05-141-4/+6
* Fix an unnecessary string copy when reading the <link> tags.Gravatar Peter Powell2019-05-141-2/+1
* Replace ModuleSpanningTree::TimeToStr with InspIRCd::DurationStr.Gravatar Peter Powell2019-05-144-20/+2
* Delete some obsolete comments.Gravatar Peter Powell2019-05-091-1/+0
* Merge branch 'insp20' into insp3.Gravatar Peter Powell2019-05-021-1/+1
|\
| * Update documentation links.Gravatar Peter Powell2019-04-261-1/+1
| * Fix m_spanningtree sending the wrong setter in S2S ADDLINE.Gravatar Peter Powell2017-12-151-1/+1
* | Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-289-23/+23
* | m_spanningtree: Parse and copy message tags for all cmds•••Don't ignore message tags on ServerCommands, and avoid creating duplicate CommandBase::Params instances Gravatar linuxdaemon2019-04-281-7/+10
* | m_spanningtree: Ensure tags are sent in forwarded cmds•••When a user (U1) sends a PRIVMSG to a server (S1), which sends it to S2, which finally sends it to S3 to send to U2, S2 doesn't send the tags it received on the command from S1 to S3. Gravatar linuxdaemon2019-04-281-2/+2
* | Fix broken linking over IPv4 on IPv6 capable systems.•••If no bind address was specified then one would be created which had an incompatible address family to the address that the server was trying to connect to. Gravatar Peter Powell2019-04-251-5/+15