| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Hide User#host and User#dhost and use accessors to modify them. | 2017-10-28 | 1 | -4/+4 | |
| | | | | | | This removes the need to invalidate the cache after changing a user's hostname. | ||||
| * | Change SetClientIP to take a C++ string instead of a char array. | 2017-10-27 | 1 | -1/+1 | |
| | | |||||
| * | Clean up User::FormatModes(), rename to GetModeLetters() | 2016-12-30 | 1 | -1/+1 | |
| | | | | | Prefix the returned string with '+' | ||||
| * | Deduplicate nickname overruling code | 2016-12-30 | 1 | -6/+2 | |
| | | | | | Create LocalUser::OverruleNick(), call it from User::ChangeNick() and the UID handler in spanningtree | ||||
| * | Convert ModeHandler::GetNumParams() to NeedsParam() that returns a bool | 2016-08-29 | 1 | -1/+1 | |
| | | |||||
| * | m_spanningtree Add class SpanningTree::RemoteUser | 2016-03-29 | 1 | -1/+2 | |
| | | |||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -1/+1 | |
| | | | | | parameters | ||||
| * | m_spanningtree Log nick collisions more verbosely and in all cases | 2015-05-23 | 1 | -3/+1 | |
| | | |||||
| * | m_spanningtree Clean up comments | 2015-05-13 | 1 | -6/+4 | |
| | | |||||
| * | m_spanningtree Keep track of whether servers are behind a bursting server, ↵ | 2014-07-27 | 1 | -1/+1 | |
| | | | | | use it to implement quietbursts | ||||
| * | m_spanningtree Replace direct access of TreeServer::bursting with IsBursting() | 2014-07-27 | 1 | -1/+1 | |
| | | |||||
| * | m_spanningtree Set the TS of the uuid nick to the same value on collision | 2014-07-26 | 1 | -1/+3 | |
| | | |||||
| * | m_spanningtree Return a bool from DoCollision() | 2014-07-26 | 1 | -3/+3 | |
| | | | | | The return value is true if the remote user or both have to change, false if only we have to change | ||||
| * | m_spanningtree Update comments around collision handling | 2014-07-26 | 1 | -5/+4 | |
| | | |||||
| * | m_spanningtree Update nick overrule on UID code to make sense on master | 2014-07-25 | 1 | -2/+2 | |
| | | |||||
| * | Merge insp20 | 2014-07-25 | 1 | -1/+12 | |
| |\ | |||||
| | * | m_spanningtree Always treat the remote client as the winner on nick ↵ | 2014-07-24 | 1 | -3/+14 | |
| | | | | | | | | | collision if the nick is used by a (local) client that isn't fully registered | ||||
| * | | m_spanningtree Use vector back() where it makes sense | 2014-06-14 | 1 | -1/+1 | |
| | | | |||||
| * | | Switch to std::string::compare() from substr() in a couple of places | 2014-05-26 | 1 | -1/+1 | |
| | | | |||||
| * | | m_spanningtree Add ServerCommand::ExtractTS() to convert string to raw TS | 2014-04-16 | 1 | -6/+2 | |
| | | | | | | | | | Throws a ProtocolException if the input is invalid | ||||
| * | | m_spanningtree Throw an exception on protocol violations instead of ↵ | 2014-04-16 | 1 | -17/+7 | |
| | | | | | | | | | | | | | returning CMD_INVALID Catch CoreExceptions, log and close the link in OnDataReady() | ||||
| * | | Rewrite clone counting to use one map instead of two | 2014-03-17 | 1 | -1/+1 | |
| | | | |||||
| * | | Change allocation of UserManager::clientlist to be physically part of the ↵ | 2014-03-15 | 1 | -1/+1 | |
| | | | | | | | | | object containing it | ||||
| * | | Add UserManager::GetUsers() | 2014-03-15 | 1 | -4/+3 | |
| | | | |||||
| * | | Introduce Server class | 2014-01-05 | 1 | -4/+4 | |
| | | | | | | | | | | | - Replaces std::string server in User - Replaces InspIRCd::ULine() and SilentULine() | ||||
| * | | m_spanningtree Introduce command builders | 2013-08-27 | 1 | -0/+14 | |
| | | | |||||
| * | | m_spanningtree Allow server-to-server command handlers to specify whether ↵ | 2013-08-25 | 1 | -15/+5 | |
| | | | | | | | | | | | | | they accept servers, remote users or both as the command source To make life easier for handlers accepting servers only as source, pass them a TreeServer* so they don't have to call FindServer() | ||||
| * | | m_spanningtree Move all server-to-server command handlers into handler classes | 2013-08-18 | 1 | -12/+7 | |
| | | | | | | | | | These commands are not registered in or called by the core. When looking for the handler of a command a new command table is searched first which contains all server-to-server commands. If a handler cannot be found in there, the core command table is consulted. | ||||
| * | | m_spanningtree Remove SpanningTreeUtilities* fields and parameters | 2013-08-17 | 1 | -1/+0 | |
| | | | |||||
| * | | Accept std::string as parameter in User::ChangeHost(), ChangeIdent() and ↵ | 2013-08-09 | 1 | -3/+3 | |
| | | | | | | | | | | | | | ChangeName() Pass the string itself to IsIdent() instead of string.c_str() | ||||
| * | | Change the syntax of FOREACH macros to be less dumb. | 2013-08-04 | 1 | -1/+1 | |
| | | | |||||
| * | | Change modules to use the MODNAME constant when logging. | 2013-08-04 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | The majority of modules were logging with their module name as the log type. There was a few places which were logging to a non-name type but, with the exception of CONFIG, those messages are so uncommon that it doesn't make sense to use a seperate type for them. | ||||
| * | | Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() ↵ | 2013-07-01 | 1 | -1/+1 | |
| | | | | | | | | | with ModeHandlers, part 1 | ||||
| * | | Fix spacing in calls to LogManager::Log. | 2013-05-19 | 1 | -1/+1 | |
| | | | |||||
| * | | m_spanningtree UID handler: Fix parsing user modes | 2013-05-14 | 1 | -3/+5 | |
| | | | | | | | | | | | Spotted by @ShutterQuick Issue #532 | ||||
| * | | m_spanningtree Remove unneeded #includes | 2013-04-12 | 1 | -3/+0 | |
| | | | |||||
| * | | m_spanningtree Remove encapsulation on UserCount/OperCount | 2013-04-12 | 1 | -1/+1 | |
| | | | |||||
| * | | m_spanningtree UID handler: Log and drop the link when a server introduces a ↵ | 2013-04-12 | 1 | -21/+23 | |
| | | | | | | | | | user with an unknown user mode | ||||
| * | | m_spanningtree UID handler: Remove dead code | 2013-04-12 | 1 | -11/+5 | |
| | | | |||||
| * | | Add LOG_ prefix to the log level enum values. | 2013-04-12 | 1 | -2/+2 | |
| | | | |||||
| * | | Change User::GetIPString() to return const std::string& | 2013-04-01 | 1 | -1/+1 | |
| |/ | |||||
| * | m_spanningtree Remove redundant params.size() checks | 2012-11-28 | 1 | -9/+0 | |
| | | | | | TreeSocket::ProcessConnectedLine() and CommandParser::CallHandler() only call the handler when there are enough parameters | ||||
| * | Make better use of User::GetFullRealHost() | 2012-10-21 | 1 | -1/+1 | |
| | | |||||
| * | m_spanningtree Call the collision handler with the proper parameter (client ↵ | 2012-07-01 | 1 | -1/+1 | |
| | | | | | ip instead of modestring) when a nick collides at burst | ||||
| * | Be consistent with Robby's qQ snomask changes | 2012-06-12 | 1 | -1/+1 | |
| | | |||||
| * | Replace copyright headers with headers granting specific authors copyright | 2012-04-19 | 1 | -8/+16 | |
| | | |||||
| * | Prevent using invalid UIDs and enforce UID/SID matching | 2010-04-11 | 1 | -4/+8 | |
| | | |||||
| * | Log duplicate UUID events a bit better | 2010-03-02 | 1 | -0/+1 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12580 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Make UID modify its parameter on a nick collision so that services has an ↵ | 2010-02-11 | 1 | -5/+4 | |
| | | | | | | | easier time understanding things git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12433 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
| * | Remove a few needless string crops, compile fix | 2010-01-30 | 1 | -5/+5 | |
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12329 e03df62e-2008-0410-955e-edbf42e46eb7 | ||||
