summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree
AgeCommit message (Collapse)Author
2016-12-30Deduplicate nickname overruling codeAttila Molnar
Create LocalUser::OverruleNick(), call it from User::ChangeNick() and the UID handler in spanningtree
2016-12-07Fix SpanningTreeProtocolInterface::SendChannelPrivmsg() and ↵genius3000
SendChannelNotice() sending statusmsgs to whole channel
2016-09-09Replace snprintf usage with InspIRCd::Format.Peter Powell
2016-09-02Bump version to 3.0 in comments and messagesAttila Molnar
2016-09-02m_spanningtree Allow multiple valid ips for link blocks as a result of ↵Adam
SecurityIPResolver
2016-09-02m_spanningtree Add workaround to make SVS* commands work when using ENCAPAttila Molnar
2016-09-02m_spanningtree Refuse topic changes that would result in desyncAttila Molnar
This is a workaround until the protocol is updated
2016-08-30Replace loop over alphabet with loop over mode list in several placesAttila Molnar
2016-08-29Convert ModeHandler::GetNumParams() to NeedsParam() that returns a boolAttila Molnar
2016-08-26m_spanningtree Drop unnecessary c_str() call when passing Link::Name to ↵Attila Molnar
methods expecting std::string
2016-08-25m_spanningtree Handle unload in resolversAttila Molnar
2016-08-25spanningtree: use bindip aftype as a hint for dns lookup typeAdam
2016-08-25core_dns Make question a member of request, move common FindAnswerOfType to ↵Adam
be a member of query
2016-08-24Check for errors after calling IOHookProvider::OnAccept()Attila Molnar
2016-08-22m_spanningtree Use ASCII case insensitive map for matching server namesAttila Molnar
2016-08-22m_spanningtree Change type of Link::Name to std::stringAttila Molnar
Switch to stdalgo::string::equalsci()
2016-08-19m_spanningtree Put command handlers with class names that collide with core ↵Attila Molnar
commands into the SpanningTree namespace This fixes issues in static builds
2016-08-17Merge insp20Attila Molnar
2016-08-08Keep multiple IOHookProvider references in class ListenSocketAttila Molnar
This adds the <bind:hook> config option which works together with <bind:ssl>
2016-08-08Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ↵Attila Molnar
module Use it to simplify logic in all modules using or providing IOHooks
2016-08-05Fix challenge auth when using m_hash_gnutls instead of m_sha256.Peter Powell
2016-08-01Fix bursting channel bansAdam
2016-04-28m_spanningtree Send snotice with the negotiated ciphersuite when connected ↵Attila Molnar
using SSL
2016-04-25m_spanningtree Call the OnServerLink hook from TreeServer constructorAttila Molnar
2016-04-25m_spanningtree Call the OnServerSplit hook from TreeServer::SQuitInternal() ↵Attila Molnar
so it runs for all lost servers
2016-04-25m_spanningtree Call the OnServerSplit hook from the OnUnloadModule() handler ↵Attila Molnar
on unload
2016-04-25m_spanningtree Don't try to call the OnServerSplit hook when the module is ↵Attila Molnar
being unloaded
2016-04-13m_spanningtree Ignore incoming BURST command in CONNECTED stateAttila Molnar
2016-04-13m_spanningtree Fix FJOIN forwardingAttila Molnar
2016-04-13m_spanningtree Resync servers when they recreate a channel outside of burstAttila Molnar
2016-04-13m_spanningtree Allow IJOIN with lower TSAttila Molnar
2016-04-11Refactor topic setting logic to go through Channel::SetTopic() in all casesAttila Molnar
- 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
2016-03-30Remove unused ProtocolInterface::SendTopic()Attila Molnar
2016-03-30Remove ProtocolInterface::PushToClient()Attila Molnar
2016-03-30m_spanningtree Remove PUSH handlerAttila Molnar
2016-03-29Make User::WriteRemoteNumeric() virtual, implement it in ↵Attila Molnar
SpanningTree::RemoteUser
2016-03-29m_spanningtree Add CommandNum::BuilderAttila Molnar
2016-03-29m_spanningtree Translate NUM to PUSH and PUSH to NUM, NOTICE or PRIVMSG for ↵Attila Molnar
1202 protocol servers
2016-03-29m_spanningtree Add NUM command handlerAttila Molnar
2016-03-29m_spanningtree Add class SpanningTree::RemoteUserAttila Molnar
2016-03-29Simplify GetRouting() methods doing unicastAttila Molnar
2016-03-29m_spanningtree Use SpanningTreeUtilities::FindRouteTarget() in RouteCommand()Attila Molnar
This makes ROUTE_UNICAST() accept nicks and uuids
2016-03-29m_spanningtree Add SpanningTreeUtilities::FindRouteTarget()Attila Molnar
2016-03-29m_spanningtree Remove unused SpanningTreeUtilities::BestRouteTo()Attila Molnar
2016-03-29m_spanningtree Remove unused SpanningTreeUtilities::DoOneToOne() overload ↵Attila Molnar
accepting a string
2016-03-29m_spanningtree Remove unused CommandBuilder::Unicast() overload accepting a ↵Attila Molnar
string
2016-03-05Send NOTICEs to local channel members with Channel::WriteNotice()Attila Molnar
2016-03-01m_spanningtree Remove ModuleSpanningTree::RemoteMessage()Attila Molnar
This method is no longer used, replacement is User::WriteRemoteNotice()
2016-03-01Send NOTICEs that can go to both local and remote users with ↵Attila Molnar
User::WriteRemoteNotice()
2016-02-28Minor spelling errors in m_spanningtree.soGuillaume Delacour