aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
...
* | | m_spanningtree Quit all split users in one goGravatar Attila Molnar2014-07-282-8/+9
| | |
* | | m_spanningtree Mark servers awaiting destruction after being lost in a ↵Gravatar Attila Molnar2014-07-282-2/+15
| | | | | | | | | | | | netsplit, add TreeServer::IsDead()
* | | m_spanningtree Remove now unused TreeServer::Tidy()Gravatar Attila Molnar2014-07-282-25/+0
| | |
* | | m_spanningtree Add the TreeServer that split to the cull list and destroy ↵Gravatar Attila Molnar2014-07-282-7/+15
| | | | | | | | | | | | everything under it recursively at cull time instead of at squit processing time
* | | m_spanningtree Remove split servers from the hash maps in ↵Gravatar Attila Molnar2014-07-282-3/+9
| | | | | | | | | | | | TreeServer::SQuitInternal()
* | | m_spanningtree Move squit logic into TreeServer from TreeSocketGravatar Attila Molnar2014-07-288-112/+84
| | |
* | | m_spanningtree Remove now needless TreeSocket::ConnectionFailureShownGravatar Attila Molnar2014-07-283-13/+8
| | |
* | | m_spanningtree Ensure that TreeSocket::Close() only runs onceGravatar Attila Molnar2014-07-281-2/+4
| | |
* | | m_spanningtree Keep track of whether servers are behind a bursting server, ↵Gravatar Attila Molnar2014-07-274-6/+28
| | | | | | | | | | | | use it to implement quietbursts
* | | m_spanningtree Only mark one server as finished bursting on ENDBURST (or ↵Gravatar Attila Molnar2014-07-271-3/+6
| | | | | | | | | | | | PONG), not all behind it
* | | m_spanningtree Sync bursting state of servers in SERVERGravatar Attila Molnar2014-07-273-3/+14
| | | | | | | | | | | | Also send the time when they started bursting
* | | m_spanningtree Parse additional information present in SERVER messagesGravatar Attila Molnar2014-07-272-0/+24
| | | | | | | | | | | | Format: <key>[=<value>]
* | | m_spanningtree Add TreeServer::BeginBurst() that marks a server as burstingGravatar Attila Molnar2014-07-274-5/+18
| | | | | | | | | | | | Don't mark servers as bursting in the constructor
* | | m_spanningtree Use the value of StartBurst to determine whether a server is ↵Gravatar Attila Molnar2014-07-272-6/+6
| | | | | | | | | | | | bursting, remove TreeServer::bursting
* | | m_spanningtree Replace direct access of TreeServer::bursting with IsBursting()Gravatar Attila Molnar2014-07-276-5/+10
| | |
* | | m_spanningtree Remove post-handshake BURST handlerGravatar Attila Molnar2014-07-273-15/+1
| | |
* | | m_spanningtree Don't send needless BURST after introducing a serverGravatar Attila Molnar2014-07-272-2/+14
| | | | | | | | | | | | Synthesize a BURST after SERVER for 1202 protocol servers if we are not bursting
* | | m_spanningtree Keep track of whether we've sent our burst, to be used for ↵Gravatar Attila Molnar2014-07-273-2/+10
| | | | | | | | | | | | translation
* | | m_spanningtree Add TreeSocket::WriteLineNoCompat() to send a line without ↵Gravatar Attila Molnar2014-07-272-6/+14
| | | | | | | | | | | | doing any translation for old protocol servers
* | | m_spanningtree Translate the new SERVER message for 1202 protocol serversGravatar Attila Molnar2014-07-271-0/+26
| | |
* | | m_spanningtree Remove unused parameters from the server introduction messageGravatar Attila Molnar2014-07-274-8/+3
| | | | | | | | | | | | This does not affect the initial SERVER message containing the password
* | | m_spanningtree Add newly created TreeServers to the parent's list in the ↵Gravatar Attila Molnar2014-07-273-2/+1
| | | | | | | | | | | | constructor
* | | m_spanningtree Don't pointlessly copy strings in SERVER handlersGravatar Attila Molnar2014-07-271-7/+7
| | |
* | | m_spanningtree Deduplicate server auth codeGravatar Attila Molnar2014-07-272-55/+37
| | |
* | | m_spanningtree Deduplicate auth finish codeGravatar Attila Molnar2014-07-273-22/+28
| | |
* | | m_spanningtree Remove duplicated code from TreeSocket::Outbound_Reply_Server()Gravatar Attila Molnar2014-07-271-14/+1
| | | | | | | | | | | | This is implemented in CheckDuplicate()
* | | m_spanningtree Set the TS of the uuid nick to the same value on collisionGravatar Attila Molnar2014-07-265-4/+13
| | |
* | | m_spanningtree Warn instead of sending SAVE if we change the nick of a ↵Gravatar Attila Molnar2014-07-261-5/+2
| | | | | | | | | | | | non-local user outside of a command handler
* | | m_spanningtree Only accept uuids in SAVEGravatar Attila Molnar2014-07-261-1/+1
| | |
* | | m_spanningtree Don't accept NICK with 0 TSGravatar Attila Molnar2014-07-261-2/+2
| | |
* | | m_spanningtree Return a bool from DoCollision()Gravatar Attila Molnar2014-07-264-15/+9
| | | | | | | | | | | | The return value is true if the remote user or both have to change, false if only we have to change
* | | m_spanningtree Replace WriteLine() call with Unicast() in DoCollision()Gravatar Attila Molnar2014-07-261-2/+1
| | |
* | | m_spanningtree Replace #defines with references in DoCollision()Gravatar Attila Molnar2014-07-261-5/+3
| | |
* | | m_spanningtree Update comments around collision handlingGravatar Attila Molnar2014-07-263-22/+15
| | |
* | | m_spanningtree Let the NICK handler change the nick of the incoming user on ↵Gravatar Attila Molnar2014-07-262-13/+5
| | | | | | | | | | | | | | | | | | collision Don't change it in DoCollision()
* | | m_spanningtree Update nick overrule on UID code to make sense on masterGravatar Attila Molnar2014-07-251-2/+2
| | |
* | | m_ssl_openssl Read the DH params file using the BIO API on all OSesGravatar Attila Molnar2014-07-251-10/+2
| | |
* | | Merge insp20Gravatar Attila Molnar2014-07-2523-62/+111
|\| |
| * | Update example configuration files, fix typos and caseGravatar Attila Molnar2014-07-241-1/+1
| | | | | | | | | | | | Mention m_regex_stdlib in the list of regex providers after m_filter
| * | m_spanningtree Always treat the remote client as the winner on nick ↵Gravatar Attila Molnar2014-07-242-4/+15
| | | | | | | | | | | | collision if the nick is used by a (local) client that isn't fully registered
| * | Make sure the DN strings obtained from the SSL mods are always validGravatar Attila Molnar2014-07-242-4/+22
| | |
| * | m_hideoper: Hide hidden opers from /stats P. #874Gravatar Adam2014-07-191-1/+22
| | |
| * | Merge pull request #879 from SaberUK/insp20+fix-denychansGravatar Attila Molnar2014-06-261-1/+1
| |\ \ | | | | | | | | Fix copy/paste error in m_denychans.
| | * | Fix copy/paste error in m_denychans.Gravatar Peter Powell2014-06-241-1/+1
| | | |
| * | | m_chghost Allow ulined servers to change the host of unregistered users (for ↵Gravatar Attila Molnar2014-06-181-1/+2
| |/ / | | | | | | | | | SASL)
| * | Fix harmless loop off-by-ones found by MoonlightningGravatar satmd2014-06-073-3/+3
| | |
| * | m_spanningtree Forward NICK messages when they cause a collision with the ↵Gravatar Attila Molnar2014-06-061-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | new nick param rewritten to the uuid Suppressing these messages meant that we relied on an appropriate NICK to come from the direction the SAVE was sent to; this left all servers behind us uninformed until the target server of the SAVE reacted with a nick change to uuid. This was problematic because someone can legitimately change nick to the past nick of the SAVEd user on a server that already has the SAVEd user with the uuid nick and that nick change message can reach servers that haven't yet seen the nick change to uuid of the SAVEd user.
| * | m_spanningtree Fix cleanup of connections when unloading a module that ↵Gravatar Attila Molnar2014-06-061-0/+3
| | | | | | | | | | | | provides an IOHook
| * | Update server.cppGravatar Dan Parsons2014-05-211-2/+2
| | | | | | | | | | | | Rewrote "invalid credentials" error message to remove confusion regarding "server snomask", which some users interpreted as "I must make sure the snomask on each server is identical" (which makes no sense), when really the intention is basically "look at the logs on the other server".
| * | Fix m_permchannels and m_xline_db on WindowsGravatar Adam2014-05-082-12/+2
| | | | | | | | | | | | | | | | | | The call to remove() can fail if the database doesn't already exist. Just ignore the error, which effectively makes the rename() call below work as it does on nix