aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree
Commit message (Expand)AuthorAgeFilesLines
...
* | Rename UserMembList to Channel::MemberMap, switch all code to use itGravatar Attila Molnar2014-07-142-2/+2
* | Change return type of Channel::GetUsers() to reference from pointer as it is ...Gravatar Attila Molnar2014-07-142-5/+4
* | Remove current time parameter of the Timer constructorGravatar Attila Molnar2014-07-101-1/+1
* | m_spanningtree Extract logic that finds the source user for an incoming comma...Gravatar Attila Molnar2014-07-052-33/+51
* | m_spanningtree Fix fake direction detection for commandsGravatar Attila Molnar2014-07-051-3/+3
* | m_spanningtree Add optional expected nick TS parameter to SVSNICK•••Drop SVSNICK if the expected nick TS is present and it does not match the user's nick timestamp Gravatar Attila Molnar2014-07-051-0/+23
* | m_spanningtree Replace manual string building of outgoing commands with CmdBu...Gravatar Attila Molnar2014-07-033-4/+4
* | User::ChangeNick() cannot fail if the new nick is the uuid, document this and...Gravatar Attila Molnar2014-07-032-10/+2
* | Remove now needless User::ForceNickChange()•••Change call sites to call ChangeNick() Gravatar Attila Molnar2014-07-034-6/+6
* | m_spanningtree Drop support for changing user modes with FMODE•••This is useless with uuids Gravatar Attila Molnar2014-06-301-21/+6
* | m_spanningtree Translate user mode changes done via FMODE by 1202-protocol se...Gravatar Attila Molnar2014-06-301-0/+17
* | m_spanningtree Accept legacy JOINs from 1202-protocol servers•••2.0 accepted JOIN and some pseudoservers might use it Gravatar Attila Molnar2014-06-301-0/+14
* | Use TimingSafeCompare() to compare passwords and password hashes (non-hmac only)•••Issue #882 Gravatar Attila Molnar2014-06-281-4/+4
* | m_spanningtree Send the cert fingerprint message to opers only after successf...Gravatar Attila Molnar2014-06-281-5/+9
* | Check fingerprint before checking password (server linking)•••Checking the password before the fingerprint means that even without the correct cert it's possible to brute force the password or leak information about it. Checking the fingerprint means attackers must forge the cert before they can learn any information about the password. Gravatar Matthew Martin2014-06-281-15/+15
* | Change all occurrences of plain sort() to std::sort()Gravatar Attila Molnar2014-06-221-1/+1
* | Increment serverstats::Collisions when a collision is handled, not when a mod...Gravatar Attila Molnar2014-06-201-0/+3
* | m_spanningtree Share server description updates via SINFO descGravatar Attila Molnar2014-06-173-0/+22
* | m_spanningtree Remove server-to-server VERSION handlerGravatar Attila Molnar2014-06-173-40/+1
* | m_spanningtree Translate SINFO version to VERSION and vice versa for 1202 pro...Gravatar Attila Molnar2014-06-171-1/+19
* | m_spanningtree Exchange public server version strings via SINFO instead of VE...Gravatar Attila Molnar2014-06-172-1/+5
* | m_spanningtree Show the full version string of servers to opers•••Issue #637, suggested by @CuleX Gravatar Attila Molnar2014-06-171-1/+7
* | m_spanningtree Send and receive full version strings via SINFOGravatar Attila Molnar2014-06-172-0/+8
* | m_spanningtree Add a field to TreeServer for storing full version stringsGravatar Attila Molnar2014-06-172-1/+18
* | m_spanningtree Add server-to-server SINFO command handler and builder•••Don't send SINFO to 1202 protocol servers Gravatar Attila Molnar2014-06-174-1/+55
* | m_spanningtree Add TreeSocket::SendServerInfo() that sends all additional dat...Gravatar Attila Molnar2014-06-172-3/+11
* | m_spanningtree Remove declaration for nonexistent function: OnLine()Gravatar Attila Molnar2014-06-141-1/+0
* | m_spanningtree Use vector back() where it makes senseGravatar Attila Molnar2014-06-143-4/+4
* | m_spanningtree Initialize boolean member variables in the constructor of the ...Gravatar Attila Molnar2014-06-141-3/+2
* | m_spanningtree Initialize TreeServer::UserCount for TreeRoot in its constructorGravatar Attila Molnar2014-06-142-4/+2
* | Make the default ProtocolInterface instance part of class InspIRCd•••The protocol module no longer has to delete it on load and construct it on unload, only assign a new value to ServerInstance->PI Gravatar Attila Molnar2014-06-131-2/+1
* | m_spanningtree Change allocation of the specialized ProtocolInterface to be p...Gravatar Attila Molnar2014-06-133-4/+6
* | Change allocation of InspIRCd::Parser to be physically part of the object con...Gravatar Attila Molnar2014-06-133-3/+3
* | m_spanningtree Explicitly specify the routing for RESYNC as the one inherited...•••Command::GetRouting() defaulted to local only when RESYNC was added, but ServerCommand overrides it. Gravatar Attila Molnar2014-06-121-0/+1
* | m_spanningtree Strip membership id from KICKs sent to 1202 protocol serversGravatar Attila Molnar2014-06-111-0/+18
* | Send the membership id when kicking a remote user and drop KICKs with mismatc...•••This fixes the desync happening when a PART+JOIN crosses a KICK targetting the same user. Gravatar Attila Molnar2014-06-111-0/+3
* | m_spanningtree Strip membership ids from FJOINs sent to 1202 protocol serversGravatar Attila Molnar2014-06-111-0/+32
* | m_spanningtree Send and parse FJOINs with membership idsGravatar Attila Molnar2014-06-112-7/+27
* | m_spanningtree Add CmdBuilder::push_raw_int()Gravatar Attila Molnar2014-06-111-0/+7
* | m_spanningtree Use the FJOIN builder when a channel is createdGravatar Attila Molnar2014-06-111-5/+3
* | m_spanningtree Add CmdBuilder specialization for FJOINGravatar Attila Molnar2014-06-113-12/+53
* | m_spanningtree Send, parse and translate IJOINs with membership idsGravatar Attila Molnar2014-06-114-7/+19
* | m_spanningtree Assign an id to new MembershipsGravatar Attila Molnar2014-06-112-1/+10
* | m_spanningtree Initialize membership ids on loadGravatar Attila Molnar2014-06-111-0/+14
* | Add channel TS to server-to-server INVITE to detect and drop unauthorized inv...•••The syntax of the server-to-server INVITE command changes from :<source> INVITE <target> <channel> [<expire>] to :<source> INVITE <target> <channel> <chants> [<expire>] Gravatar Attila Molnar2014-06-102-0/+27
* | m_spanningtree Allow callers of InsertCurrentChannelTS() to customize positionsGravatar Attila Molnar2014-06-101-4/+4
* | Switch to std::string::compare() from substr() in a couple of placesGravatar Attila Molnar2014-05-262-2/+2
* | m_spanningtree Add ServerCommand::ExtractTS() to convert string to raw TS•••Throws a ProtocolException if the input is invalid Gravatar Attila Molnar2014-04-168-40/+25
* | m_spanningtree Throw an exception on protocol violations instead of returning...•••Catch CoreExceptions, log and close the link in OnDataReady() Gravatar Attila Molnar2014-04-1610-59/+48
* | m_spanningtree Fix routing of unicast messagesGravatar Attila Molnar2014-04-142-11/+19