aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/fjoin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-011-2/+2
|\
| * Fix various spelling issues (#1883).Gravatar Josh Soref2021-06-211-2/+2
| | | | | | | | Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
* | Move channel logic from InspIRCd to the new ChannelManager class.Gravatar Sadie Powell2021-05-081-2/+2
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-4/+1
| |
* | Fix a compiler warning caused by an unused variable.Gravatar Sadie Powell2021-03-301-3/+0
| |
* | Remove multi-line FJOIN and FMODE logic.Gravatar Sadie Powell2021-03-301-19/+0
| | | | | | | | | | This only existed for 1202 protocol compatibility. As of 1205 the line length has been removed.
* | Convert CmdResult to an 8-bit strongly typed enum.Gravatar Sadie Powell2020-10-271-1/+1
| |
* | Move FindUUID to the UserManager class.Gravatar Sadie Powell2020-02-091-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-041-6/+4
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-311-1/+1
| |
| * Add Channel::WriteRemoteNotice and revert WriteNotice changes.Gravatar Sadie Powell2020-01-291-5/+3
| | | | | | | | | | | | This is a partial reversion of 687778b72e. See also: #1749.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-3/+5
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-3/+5
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-12-081-2/+7
|\|
| * Allow Channel::WriteNotice send to other servers and status ranks.Gravatar Peter Powell2019-11-171-2/+7
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-271-1/+1
|\|
| * spanningtree: Never send a message to a raw UUID in CmdBuilder.Gravatar Peter Powell2019-07-191-1/+1
| |
* | ModeParser: remove fakederef.Gravatar Sadie Powell2019-02-071-5/+5
| |
* | LogManager: remove fakederef.Gravatar Sadie Powell2019-02-071-2/+2
|/
* Parse CAPAB CAPABILITIES and FJOIN messages with spacesepstream.Gravatar Peter Powell2018-08-101-1/+1
| | | | Special tokenisation rules are not necessary here.
* Remove the 'debug' snotice character.Gravatar Peter Powell2018-08-071-1/+1
|
* Make the FJOIN timestamp message easier for users to understand.Gravatar Peter Powell2018-08-051-1/+2
|
* Use CommandBase::Params instead of std::vector<std::string>.Gravatar Peter Powell2018-07-261-1/+1
| | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters.
* Bump version to 3.0 in comments and messagesGravatar Attila Molnar2016-09-021-1/+1
|
* m_spanningtree Fix FJOIN forwardingGravatar Attila Molnar2016-04-131-1/+1
|
* m_spanningtree Resync servers when they recreate a channel outside of burstGravatar Attila Molnar2016-04-131-2/+12
|
* Refactor topic setting logic to go through Channel::SetTopic() in all casesGravatar Attila Molnar2016-04-111-7/+2
| | | | | - Pass topic set time and optionally the setter to SetTopic() - Don't do anything if the topic is changed by a local user to what it is currently
* Send NOTICEs to local channel members with Channel::WriteNotice()Gravatar Attila Molnar2016-03-051-1/+1
|
* Rewrite invite systemGravatar Attila Molnar2015-11-021-3/+0
| | | | | | | | - Moved out of core, now lives entirely in core_channel - Accessible using the provided API after including the appropriate header - Invites are stored in an extension attached to LocalUser/Channel objects, they no longer need special handling when destroying these objects or when lowering TS - Expiration of timed invites are implemented using Timers - When creating a new invite let a non-timed invite override a timed one
* m_spanningtree Clean up commentsGravatar Attila Molnar2015-05-131-6/+3
|
* Merge insp20Gravatar Attila Molnar2015-04-201-2/+2
|\
| * Fix a snotice in m_spanningtree incorrectly using an unsigned long.Gravatar Peter Powell2015-01-031-2/+2
| | | | | | | | | | This value can be negative so it should be a signed long not an unsigned long.
* | m_spanningtree Forward FJOINs with correct TS, modes and userlistGravatar Attila Molnar2015-01-091-2/+75
| |
* | m_spanningtree Change name and scope of commait in FJOIN handlerGravatar Attila Molnar2015-01-091-3/+4
| |
* | m_spanningtree Add overload for add() and has_room(), giving more ↵Gravatar Attila Molnar2015-01-091-4/+4
| | | | | | | | flexibility to subclasses of CommandFJoin::Builder
* | m_spanningtree Add source server parameter to CommandFJOIN::Builder constructorGravatar Attila Molnar2015-01-091-2/+2
| | | | | | | | Default it to this server
* | m_spanningtree Simplify processing non-prefix modes in FJOINsGravatar Attila Molnar2014-09-041-18/+1
| | | | | | | | Use ModeParser::ModeParamsToChangeList() instead of duplicating logic
* | m_spanningtree Remove CommandFJoin::ApplyModeStack()Gravatar Attila Molnar2014-09-031-12/+0
| |
* | Use Modes::ChangeList in ModeHandler::RemoveMode()Gravatar Attila Molnar2014-09-031-3/+3
| |
* | Replace irc::modestacker usage with the new ModeParser::Process()Gravatar Attila Molnar2014-09-031-22/+14
| |
* | m_spanningtree Replace direct access of TreeServer::bursting with IsBursting()Gravatar Attila Molnar2014-07-271-1/+1
| |
* | Merge insp20Gravatar Attila Molnar2014-07-251-4/+5
|\|
| * m_spanningtree Set the bursting flag in the FJOIN handler based on whether ↵Gravatar Attila Molnar2014-04-261-2/+3
| | | | | | | | | | | | | | | | the source of the FJOIN is bursting or not Previously the flag was true if our route to the source was bursting, which resulted in m_joinflood incorrectly registering netjoins when a remote server was bursting Fixes issue #839 reported by @joshtek0
* | m_spanningtree Use vector back() where it makes senseGravatar Attila Molnar2014-06-141-1/+1
| |
* | m_spanningtree Send and parse FJOINs with membership idsGravatar Attila Molnar2014-06-111-7/+23
| |
* | m_spanningtree Add CmdBuilder specialization for FJOINGravatar Attila Molnar2014-06-111-0/+32
| |
* | m_spanningtree Add ServerCommand::ExtractTS() to convert string to raw TSGravatar Attila Molnar2014-04-161-7/+1
| | | | | | | | Throws a ProtocolException if the input is invalid
* | m_spanningtree Throw an exception on protocol violations instead of ↵Gravatar Attila Molnar2014-04-161-10/+5
| | | | | | | | | | | | returning CMD_INVALID Catch CoreExceptions, log and close the link in OnDataReady()
* | Add ModeParser::GetModes(), returns all user/chanmodesGravatar Attila Molnar2014-02-221-4/+4
| |
* | Unset all extensions and the topic when lowering TS on a channelGravatar Attila Molnar2014-01-061-10/+30
| |