aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 3.0 in comments and messagesGravatar Attila Molnar2016-09-023-4/+4
|
* m_spanningtree Allow multiple valid ips for link blocks as a result of ↵Gravatar Adam2016-09-021-3/+6
| | | | SecurityIPResolver
* m_spanningtree Add workaround to make SVS* commands work when using ENCAPGravatar Attila Molnar2016-09-021-0/+11
|
* m_spanningtree Refuse topic changes that would result in desyncGravatar Attila Molnar2016-09-022-0/+14
| | | | This is a workaround until the protocol is updated
* Replace loop over alphabet with loop over mode list in several placesGravatar Attila Molnar2016-08-301-13/+11
|
* Convert ModeHandler::GetNumParams() to NeedsParam() that returns a boolGravatar Attila Molnar2016-08-292-2/+2
|
* m_spanningtree Drop unnecessary c_str() call when passing Link::Name to ↵Gravatar Attila Molnar2016-08-263-4/+4
| | | | methods expecting std::string
* m_spanningtree Handle unload in resolversGravatar Attila Molnar2016-08-251-1/+7
|
* spanningtree: use bindip aftype as a hint for dns lookup typeGravatar Adam2016-08-251-1/+9
|
* core_dns Make question a member of request, move common FindAnswerOfType to ↵Gravatar Adam2016-08-251-2/+7
| | | | be a member of query
* Check for errors after calling IOHookProvider::OnAccept()Gravatar Attila Molnar2016-08-241-2/+10
|
* m_spanningtree Use ASCII case insensitive map for matching server namesGravatar Attila Molnar2016-08-222-4/+4
|
* m_spanningtree Change type of Link::Name to std::stringGravatar Attila Molnar2016-08-225-14/+13
| | | | Switch to stdalgo::string::equalsci()
* m_spanningtree Put command handlers with class names that collide with core ↵Gravatar Attila Molnar2016-08-193-18/+33
| | | | | | commands into the SpanningTree namespace This fixes issues in static builds
* Merge insp20Gravatar Attila Molnar2016-08-171-1/+1
|\
| * Fix challenge auth when using m_hash_gnutls instead of m_sha256.Gravatar Peter Powell2016-08-051-2/+3
| |
| * Fix bursting channel bansGravatar Adam2016-08-012-11/+16
| |
| * Minor spelling errors in m_spanningtree.soGravatar Guillaume Delacour2016-02-282-2/+2
| |
* | Keep multiple IOHookProvider references in class ListenSocketGravatar Attila Molnar2016-08-081-2/+7
| | | | | | | | This adds the <bind:hook> config option which works together with <bind:ssl>
* | Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ↵Gravatar Attila Molnar2016-08-081-2/+2
| | | | | | | | | | | | module Use it to simplify logic in all modules using or providing IOHooks
* | m_spanningtree Send snotice with the negotiated ciphersuite when connected ↵Gravatar Attila Molnar2016-04-281-0/+10
| | | | | | | | using SSL
* | m_spanningtree Call the OnServerLink hook from TreeServer constructorGravatar Attila Molnar2016-04-251-1/+2
| |
* | m_spanningtree Call the OnServerSplit hook from TreeServer::SQuitInternal() ↵Gravatar Attila Molnar2016-04-251-2/+3
| | | | | | | | so it runs for all lost servers
* | m_spanningtree Call the OnServerSplit hook from the OnUnloadModule() handler ↵Gravatar Attila Molnar2016-04-251-0/+16
| | | | | | | | on unload
* | m_spanningtree Don't try to call the OnServerSplit hook when the module is ↵Gravatar Attila Molnar2016-04-251-1/+2
| | | | | | | | being unloaded
* | m_spanningtree Ignore incoming BURST command in CONNECTED stateGravatar Attila Molnar2016-04-131-0/+5
| |
* | 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
| |
* | m_spanningtree Allow IJOIN with lower TSGravatar Attila Molnar2016-04-131-4/+2
| |
* | Refactor topic setting logic to go through Channel::SetTopic() in all casesGravatar Attila Molnar2016-04-112-20/+3
| | | | | | | | | | - 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
* | Remove unused ProtocolInterface::SendTopic()Gravatar Attila Molnar2016-03-302-6/+0
| |
* | Remove ProtocolInterface::PushToClient()Gravatar Attila Molnar2016-03-302-6/+0
| |
* | m_spanningtree Remove PUSH handlerGravatar Attila Molnar2016-03-303-45/+1
| |
* | Make User::WriteRemoteNumeric() virtual, implement it in ↵Gravatar Attila Molnar2016-03-292-0/+6
| | | | | | | | SpanningTree::RemoteUser
* | m_spanningtree Add CommandNum::BuilderGravatar Attila Molnar2016-03-292-0/+22
| |
* | m_spanningtree Translate NUM to PUSH and PUSH to NUM, NOTICE or PRIVMSG for ↵Gravatar Attila Molnar2016-03-291-0/+90
| | | | | | | | 1202 protocol servers
* | m_spanningtree Add NUM command handlerGravatar Attila Molnar2016-03-293-1/+57
| |
* | m_spanningtree Add class SpanningTree::RemoteUserGravatar Attila Molnar2016-03-293-1/+61
| |
* | Simplify GetRouting() methods doing unicastGravatar Attila Molnar2016-03-293-12/+3
| |
* | m_spanningtree Use SpanningTreeUtilities::FindRouteTarget() in RouteCommand()Gravatar Attila Molnar2016-03-291-1/+3
| | | | | | | | This makes ROUTE_UNICAST() accept nicks and uuids
* | m_spanningtree Add SpanningTreeUtilities::FindRouteTarget()Gravatar Attila Molnar2016-03-292-0/+18
| |
* | m_spanningtree Remove unused SpanningTreeUtilities::BestRouteTo()Gravatar Attila Molnar2016-03-292-30/+0
| |
* | m_spanningtree Remove unused SpanningTreeUtilities::DoOneToOne() overload ↵Gravatar Attila Molnar2016-03-292-11/+0
| | | | | | | | accepting a string
* | m_spanningtree Remove unused CommandBuilder::Unicast() overload accepting a ↵Gravatar Attila Molnar2016-03-291-5/+0
| | | | | | | | string
* | Send NOTICEs to local channel members with Channel::WriteNotice()Gravatar Attila Molnar2016-03-051-1/+1
| |
* | m_spanningtree Remove ModuleSpanningTree::RemoteMessage()Gravatar Attila Molnar2016-03-012-17/+0
| | | | | | | | This method is no longer used, replacement is User::WriteRemoteNotice()
* | Send NOTICEs that can go to both local and remote users with ↵Gravatar Attila Molnar2016-03-013-7/+7
| | | | | | | | User::WriteRemoteNotice()
* | Introduce Stats::Context, pass it to the OnStats hook and switch all code to itGravatar Attila Molnar2016-02-252-8/+15
| |
* | Add User::WriteRemoteNumeric() and switch code using SendText() to send ↵Gravatar Attila Molnar2016-02-251-7/+4
| | | | | | | | numerics to it
* | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵Gravatar Attila Molnar2016-02-254-11/+10
| | | | | | | | parameters