| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | | Pass prefix rank and prefix char to PrefixMode constructor | 2014-08-06 | 3 | -7/+4 | ||
| * | | | m_exemptchanops Fix parameter validation | 2014-08-06 | 1 | -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 | 2014-08-06 | 1 | -13/+10 | ||
| * | | | m_pbkdf2 Less string copying | 2014-08-04 | 1 | -4/+6 | ||
| * | | | m_pbkdf2: Added module•••Bugfixes and minor changes are by @attilamolnar, original PR #767 | 2014-08-04 | 1 | -0/+260 | ||
| * | | | m_bcrypt: Add module•••bcrypt updated to 1.3 by @attilamolnar, original PR #767 | 2014-08-04 | 1 | -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 | 2014-08-04 | 7 | -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)." | 2014-08-04 | 1 | -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. | 2014-07-29 | 2 | -14/+14 | ||
| * | | | Allow fast sid reuse by erasing fake users from UserManager::uuidlist when th... | 2014-07-28 | 1 | -0/+4 | ||
| * | | | m_spanningtree Throw a ProtocolException if a server SQUITs a server it shoul... | 2014-07-28 | 1 | -0/+2 | ||
| * | | | m_spanningtree Squit dead servers immediately when they die, not at the next ... | 2014-07-28 | 2 | -6/+1 | ||
| * | | | m_spanningtree Remove the now needless SplitInProgress workaround | 2014-07-28 | 3 | -9/+0 | ||
| * | | | m_spanningtree Check TreeServer::IsDead() to learn whether a user is being qu... | 2014-07-28 | 1 | -1/+2 | ||
| * | | | m_spanningtree Change type of num_lost_* to be unsigned | 2014-07-28 | 2 | -7/+7 | ||
| * | | | m_spanningtree Quit all split users in one go | 2014-07-28 | 2 | -8/+9 | ||
| * | | | m_spanningtree Mark servers awaiting destruction after being lost in a netspl... | 2014-07-28 | 2 | -2/+15 | ||
| * | | | m_spanningtree Remove now unused TreeServer::Tidy() | 2014-07-28 | 2 | -25/+0 | ||
| * | | | m_spanningtree Add the TreeServer that split to the cull list and destroy eve... | 2014-07-28 | 2 | -7/+15 | ||
| * | | | m_spanningtree Remove split servers from the hash maps in TreeServer::SQuitIn... | 2014-07-28 | 2 | -3/+9 | ||
| * | | | m_spanningtree Move squit logic into TreeServer from TreeSocket | 2014-07-28 | 8 | -112/+84 | ||
| * | | | m_spanningtree Remove now needless TreeSocket::ConnectionFailureShown | 2014-07-28 | 3 | -13/+8 | ||
| * | | | m_spanningtree Ensure that TreeSocket::Close() only runs once | 2014-07-28 | 1 | -2/+4 | ||
| * | | | m_spanningtree Keep track of whether servers are behind a bursting server, us... | 2014-07-27 | 4 | -6/+28 | ||
| * | | | m_spanningtree Only mark one server as finished bursting on ENDBURST (or PONG... | 2014-07-27 | 1 | -3/+6 | ||
| * | | | m_spanningtree Sync bursting state of servers in SERVER•••Also send the time when they started bursting | 2014-07-27 | 3 | -3/+14 | ||
| * | | | m_spanningtree Parse additional information present in SERVER messages•••Format: <key>[=<value>] | 2014-07-27 | 2 | -0/+24 | ||
| * | | | m_spanningtree Add TreeServer::BeginBurst() that marks a server as bursting•••Don't mark servers as bursting in the constructor | 2014-07-27 | 4 | -5/+18 | ||
| * | | | m_spanningtree Use the value of StartBurst to determine whether a server is b... | 2014-07-27 | 2 | -6/+6 | ||
| * | | | m_spanningtree Replace direct access of TreeServer::bursting with IsBursting() | 2014-07-27 | 6 | -5/+10 | ||
| * | | | m_spanningtree Remove post-handshake BURST handler | 2014-07-27 | 3 | -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 | 2014-07-27 | 2 | -2/+14 | ||
| * | | | m_spanningtree Keep track of whether we've sent our burst, to be used for tra... | 2014-07-27 | 3 | -2/+10 | ||
| * | | | m_spanningtree Add TreeSocket::WriteLineNoCompat() to send a line without doi... | 2014-07-27 | 2 | -6/+14 | ||
| * | | | m_spanningtree Translate the new SERVER message for 1202 protocol servers | 2014-07-27 | 1 | -0/+26 | ||
| * | | | m_spanningtree Remove unused parameters from the server introduction message•••This does not affect the initial SERVER message containing the password | 2014-07-27 | 4 | -8/+3 | ||
| * | | | m_spanningtree Add newly created TreeServers to the parent's list in the cons... | 2014-07-27 | 3 | -2/+1 | ||
| * | | | m_spanningtree Don't pointlessly copy strings in SERVER handlers | 2014-07-27 | 1 | -7/+7 | ||
| * | | | m_spanningtree Deduplicate server auth code | 2014-07-27 | 2 | -55/+37 | ||
| * | | | m_spanningtree Deduplicate auth finish code | 2014-07-27 | 3 | -22/+28 | ||
| * | | | m_spanningtree Remove duplicated code from TreeSocket::Outbound_Reply_Server()•••This is implemented in CheckDuplicate() | 2014-07-27 | 1 | -14/+1 | ||
| * | | | m_spanningtree Set the TS of the uuid nick to the same value on collision | 2014-07-26 | 5 | -4/+13 | ||
| * | | | m_spanningtree Warn instead of sending SAVE if we change the nick of a non-lo... | 2014-07-26 | 1 | -5/+2 | ||
| * | | | m_spanningtree Only accept uuids in SAVE | 2014-07-26 | 1 | -1/+1 | ||
| * | | | m_spanningtree Don't accept NICK with 0 TS | 2014-07-26 | 1 | -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 | 2014-07-26 | 4 | -15/+9 | ||
| * | | | m_spanningtree Replace WriteLine() call with Unicast() in DoCollision() | 2014-07-26 | 1 | -2/+1 | ||
| * | | | m_spanningtree Replace #defines with references in DoCollision() | 2014-07-26 | 1 | -5/+3 | ||
| * | | | m_spanningtree Update comments around collision handling | 2014-07-26 | 3 | -22/+15 | ||
| * | | | m_spanningtree Let the NICK handler change the nick of the incoming user on c...•••Don't change it in DoCollision() | 2014-07-26 | 2 | -13/+5 | ||
