aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Expand)AuthorAgeFilesLines
...
* | | Pass prefix rank and prefix char to PrefixMode constructorGravatar Attila Molnar2014-08-063-7/+4
* | | m_exemptchanops Fix parameter validationGravatar Attila Molnar2014-08-061-2/+16
* | | m_spanningtree Remove redundant checks from HandleRemoteWhois()•••The size of the vector is checked in OnPreCommand() and that hook only runs for local users Gravatar Attila Molnar2014-08-061-13/+10
* | | m_pbkdf2 Less string copyingGravatar Attila Molnar2014-08-041-4/+6
* | | m_pbkdf2: Added module•••Bugfixes and minor changes are by @attilamolnar, original PR #767 Gravatar Daniel Vassdal2014-08-041-0/+260
* | | m_bcrypt: Add module•••bcrypt updated to 1.3 by @attilamolnar, original PR #767 Gravatar Daniel Vassdal2014-08-041-0/+987
* | | Hashing: Redo API•••* Don't assume the printable output of hashes is hex * Add virtual Compare() function, usable for KDFs like BCrypt Some changes and bugfixes are by @attilamolnar, original PR #767 Gravatar Daniel Vassdal2014-08-047-27/+26
* | | m_password_hash: Use out_size as HMAC-key length, as RFC2104 recommends•••"In any case the minimal recommended length for K is L bytes (as the hash output length)." Gravatar Daniel Vassdal2014-08-041-1/+1
* | | Differ database error messages for m_permchannels and m_xline_db•••m_permchannels and m_xline_db both have the same error messages as well as not informing the server operator what file is at fault for the error. This makes it hard to find which module is causing the error and what file the module is referring to. The new messages explain which database is trying to be written and the path used to write the file. Gravatar Justin Crawford2014-07-292-14/+14
* | | Allow fast sid reuse by erasing fake users from UserManager::uuidlist when th...Gravatar Attila Molnar2014-07-281-0/+4
* | | m_spanningtree Throw a ProtocolException if a server SQUITs a server it shoul...Gravatar Attila Molnar2014-07-281-0/+2
* | | m_spanningtree Squit dead servers immediately when they die, not at the next ...Gravatar Attila Molnar2014-07-282-6/+1
* | | m_spanningtree Remove the now needless SplitInProgress workaroundGravatar Attila Molnar2014-07-283-9/+0
* | | m_spanningtree Check TreeServer::IsDead() to learn whether a user is being qu...Gravatar Attila Molnar2014-07-281-1/+2
* | | m_spanningtree Change type of num_lost_* to be unsignedGravatar Attila Molnar2014-07-282-7/+7
* | | 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 netspl...Gravatar Attila Molnar2014-07-282-2/+15
* | | 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 eve...Gravatar Attila Molnar2014-07-282-7/+15
* | | m_spanningtree Remove split servers from the hash maps in TreeServer::SQuitIn...Gravatar Attila Molnar2014-07-282-3/+9
* | | 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, us...Gravatar Attila Molnar2014-07-274-6/+28
* | | m_spanningtree Only mark one server as finished bursting on ENDBURST (or PONG...Gravatar Attila Molnar2014-07-271-3/+6
* | | m_spanningtree Sync bursting state of servers in SERVER•••Also send the time when they started bursting Gravatar Attila Molnar2014-07-273-3/+14
* | | m_spanningtree Parse additional information present in SERVER messages•••Format: <key>[=<value>] Gravatar Attila Molnar2014-07-272-0/+24
* | | m_spanningtree Add TreeServer::BeginBurst() that marks a server as bursting•••Don't mark servers as bursting in the constructor Gravatar Attila Molnar2014-07-274-5/+18
* | | m_spanningtree Use the value of StartBurst to determine whether a server is b...Gravatar Attila Molnar2014-07-272-6/+6
* | | 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 server•••Synthesize a BURST after SERVER for 1202 protocol servers if we are not bursting Gravatar Attila Molnar2014-07-272-2/+14
* | | m_spanningtree Keep track of whether we've sent our burst, to be used for tra...Gravatar Attila Molnar2014-07-273-2/+10
* | | m_spanningtree Add TreeSocket::WriteLineNoCompat() to send a line without doi...Gravatar Attila Molnar2014-07-272-6/+14
* | | 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 message•••This does not affect the initial SERVER message containing the password Gravatar Attila Molnar2014-07-274-8/+3
* | | m_spanningtree Add newly created TreeServers to the parent's list in the cons...Gravatar Attila Molnar2014-07-273-2/+1
* | | 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()•••This is implemented in CheckDuplicate() Gravatar Attila Molnar2014-07-271-14/+1
* | | 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 non-lo...Gravatar Attila Molnar2014-07-261-5/+2
* | | 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()•••The return value is true if the remote user or both have to change, false if only we have to change Gravatar Attila Molnar2014-07-264-15/+9
* | | 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 c...•••Don't change it in DoCollision() Gravatar Attila Molnar2014-07-262-13/+5