aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/netburst.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings.Gravatar Sadie Powell2023-01-231-2/+2
|
* Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-231-5/+6
|
* Fix calling various static functions through a type instance.Gravatar Sadie Powell2023-01-111-1/+1
|
* Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-101-3/+3
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
| |
* | Yet more stylistic fixes.Gravatar Sadie Powell2022-12-011-3/+6
| |
* | Refactor the internals of the oper system.Gravatar Sadie Powell2022-11-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | - Allow overriding privileges from the <class> blocks in the <type> and <oper> blocks. - Separate oper types from oper accounts in the code. This enables moving some core stuff out of the config tag later. - Merge the config tags together to make a synthetic tag that can have getXXX called on it instead of using getConfig and then converting it. - Move the details of Have*Permission into the oper type class. - Improve oper events to allow modules to easily hook into the oper system.
* | Use User::IsFullyConnected instead of checking for REG_ALL.Gravatar Sadie Powell2022-10-291-1/+1
| |
* | Deprecate the (raw)version SINFO keys and split out customversion/rawbranch.Gravatar Sadie Powell2022-05-171-7/+10
| |
* | Fix unsigned/const keyword ordering, remove unnecessary consts.Gravatar Sadie Powell2022-03-271-1/+1
| |
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-1/+1
| |
* | Add constexpr to the initialisation of various const static fields.Gravatar Sadie Powell2022-01-181-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-141-0/+3
|\|
| * Sync uniqueusername from the connect class to the user.Gravatar Sadie Powell2021-12-141-0/+3
| | | | | | | | | | This is a massive hack for now but should be made to sync properly in v4 when we have extensibles that don't suck.
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-2/+3
| |
* | Make the protocol version enum entries slightly less verbose.Gravatar Sadie Powell2021-08-281-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-08-281-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-08-271-1/+1
| |
* | Remove a bunch of unnecessary whitespace.Gravatar Sadie Powell2021-08-171-1/+0
| |
* | 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.
* | Move channel logic from InspIRCd to the new ChannelManager class.Gravatar Sadie Powell2021-05-081-1/+1
| |
* | Remove some useless getter methods and make the members public.Gravatar Sadie Powell2021-04-141-3/+3
| | | | | | | | | | 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/+11
| |
* | Add support for syncing metadata set on memberships.Gravatar Sadie Powell2021-04-011-5/+14
| | | | | | | | | | No compat logic is required here as existing servers will just drop the unknown METADATA message when they can't find the target.
* | Fix the setter and set time of list modes being lost on netburst.Gravatar Sadie Powell2021-03-301-0/+24
| | | | | | | | Closes #1812.
* | Remove multi-line FJOIN and FMODE logic.Gravatar Sadie Powell2021-03-301-43/+9
| | | | | | | | | | This only existed for 1202 protocol compatibility. As of 1205 the line length has been removed.
* | Convert FOREACH_MOD_CUSTOM to a variadic function.Gravatar Sadie Powell2020-11-101-3/+3
| |
* | Rip out compatibility code for the 2.0 protocol.Gravatar Sadie Powell2020-05-201-2/+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-2/+6
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-2/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-08-091-2/+2
|\|
| * Add {To,From}{Human,Internal,Network} to ExtensionItem.Gravatar Peter Powell2019-08-071-2/+2
| | | | | | | | Also, deprecate the old SerializeFormat/serialize/unserialise API.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-271-1/+0
|\|
| * Add an event for adding tags to S2S messages.Gravatar Peter Powell2019-07-191-1/+0
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-3/+3
|\|
| * Split ServerEventListener into {Broadcast,Link,Sync}EventListener.Gravatar Peter Powell2019-07-151-3/+3
| | | | | | | | | | | | | | | | 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
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-2/+2
|\|
| * Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-281-2/+2
| |
* | UserManager: remove fakederef.Gravatar Sadie Powell2019-02-071-1/+1
| |
* | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-071-2/+2
| |
* | ModeParser: remove fakederef.Gravatar Sadie Powell2019-02-071-1/+1
|/
* Show server versions in /MAP for opersGravatar B00mX0r2017-12-191-0/+3
| | | | This resolves #1203
* Move OnSync{Channel,Network,User} to ServerEventListener.Gravatar Peter Powell2017-12-031-5/+4
|
* m_spanningtree Clean up commentsGravatar Attila Molnar2015-05-131-8/+7
|
* m_spanningtree Keep track of whether we've sent our burst, to be used for ↵Gravatar Attila Molnar2014-07-271-0/+2
| | | | translation
* m_spanningtree Remove unused parameters from the server introduction messageGravatar Attila Molnar2014-07-271-1/+0
| | | | This does not affect the initial SERVER message containing the password