aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* The target in OnDecodeMetaData can be nullptr sometimes.Gravatar Sadie Powell2022-01-311-1/+1
|
* Add the type to the Extensible class.Gravatar Sadie Powell2022-01-311-3/+2
|
* Always catch exceptions as a constant reference.Gravatar Sadie Powell2022-01-091-2/+2
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-271-1/+1
|\
| * Allow unsetting uniqueusername with metadata too.Gravatar Sadie Powell2021-12-201-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-141-0/+8
|\|
| * Sync uniqueusername from the connect class to the user.Gravatar Sadie Powell2021-12-141-0/+8
| | | | | | | | | | This is a massive hack for now but should be made to sync properly in v4 when we have extensibles that don't suck.
* | Fix a typo in BroadcastModuleState.Gravatar Sadie Powell2021-10-051-1/+1
| |
* | Add the FRHOST command to allow changing a remote user's real host.Gravatar Sadie Powell2021-09-021-1/+10
| | | | | | | | Closes #1803.
* | Make the protocol version enum entries slightly less verbose.Gravatar Sadie Powell2021-08-281-3/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-08-281-1/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-08-271-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-06-131-2/+1
|\|
| * Code refactor and minor fix (#1879)Gravatar Herman2021-06-121-2/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-06-071-0/+1
|\|
| * Broadcast the limits for list modes on server link.Gravatar Sadie Powell2021-06-041-0/+1
| | | | | | | | This allows services to not overflow the limit.
* | 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
| |