aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_httpd_stats.cpp
Commit message (Expand)AuthorAgeFilesLines
* Hide User#host and User#dhost and use accessors to modify them.•••This removes the need to invalidate the cache after changing a user's hostname. Gravatar Peter Powell2017-10-281-1/+1
* Remove INSPIRCD_SOCKETENGINE_NAME and INSPIRCD_SYSTEM.•••- INSPIRCD_SOCKETENGINE_NAME is not really something that needs to be user facing. If opers want to know this kind of internal info then they can look at the build configuration. - INSPIRCD_SYSTEM causes problems for reproducible builds and is only accurate for the state of the system when InspIRCd is built which is not useful in the slightest. Gravatar Peter Powell2017-10-151-1/+1
* Remove module file extensions from user-visible messages.Gravatar Peter Powell2017-08-271-1/+1
* Merge v2.0.23 and v2.0.24 into master.Gravatar Peter Powell2017-07-091-1/+1
|\
| * m_httpd_stats: Also sanitize other server gecosGravatar Anatole Denis2016-10-091-1/+1
* | Clean up User::FormatModes(), rename to GetModeLetters()•••Prefix the returned string with '+' Gravatar Attila Molnar2016-12-301-1/+1
* | Convert WriteNumeric() calls to pass the parameters of the numeric as method ...Gravatar Attila Molnar2016-02-251-3/+5
* | Adds <commandlist> tag with command usage to httpd_stats.Gravatar Johanna A2016-02-201-1/+9
* | Merge branch 'master+crossmodevents'Gravatar Attila Molnar2015-02-121-5/+11
|\ \
| * | Convert the HTTPd request event to use the new cross-module event systemGravatar Attila Molnar2015-02-111-5/+11
* | | m_httpd_stats Remove days/hours/mins/secs from <uptime>•••Uptime can be calculated easily from the boot time Gravatar Attila Molnar2015-02-121-7/+1
* | | m_httpd_stats Fix pointer being shown instead of server name in <user>Gravatar Attila Molnar2015-02-121-1/+1
|/ /
* | Change type of some associative containers to their flat versions, including ...Gravatar Attila Molnar2014-12-151-5/+5
* | Remove typedef UserMembCIter, use Channel::MemberMap::const_iterator insteadGravatar Attila Molnar2014-07-141-1/+1
* | Rename UserMembList to Channel::MemberMap, switch all code to use itGravatar Attila Molnar2014-07-141-1/+1
* | Change return type of Channel::GetUsers() to reference from pointer as it is ...Gravatar Attila Molnar2014-07-141-3/+3
* | Kill needless #includes in source filesGravatar Attila Molnar2014-06-141-1/+0
* | Add UserManager::GetUsers()Gravatar Attila Molnar2014-03-151-3/+4
* | Add InspIRCd::GetChans(), remove ChannelCount()Gravatar Attila Molnar2014-03-141-3/+4
* | Move GetAllPrefixChars() from Channel to MembershipGravatar Attila Molnar2014-02-141-1/+1
* | Change all socketengine methods to be staticGravatar Attila Molnar2014-02-081-1/+1
* | Replace SocketEngine::GetName() with INSPIRCD_SOCKETENGINE_NAME defineGravatar Attila Molnar2014-02-081-1/+1
* | Merge insp20Gravatar Attila Molnar2014-01-211-1/+1
|\|
| * m_httpd_stats Be more conservative when escaping data•••Fix clang warning Gravatar Attila Molnar2014-01-211-2/+1
* | Remove some pointless code:•••- Remove the CHARSET entry from ISUPPORT. CHARSET was removed in draft-brocklesby-irc-isupport-03 and we always used the default value anyway. This has also been removed in the latest version of Charybdis. - Remove irc::sockets::satouser. This helper method was longer than the code it replaced. Gravatar Peter Powell2013-12-151-1/+1
* | Remove ModuleManager::GetAllModuleNames(), use GetModules() insteadGravatar attilamolnar2013-08-301-5/+4
* | Clean up the protocol interfaceGravatar attilamolnar2013-08-251-2/+2
* | Automatically attach modules to eventsGravatar attilamolnar2013-08-041-6/+0
* | Change httpd modules to use the MODNAME constant in headers.Gravatar Peter Powell2013-08-041-1/+1
* | Change modules to use the MODNAME constant when logging.•••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. Gravatar Peter Powell2013-08-041-1/+1
* | Remove $Core and $Mod* comments apart from $ModDep.Gravatar Peter Powell2013-07-041-2/+0
* | Change the API of m_httpd to be dynamic_reference-basedGravatar attilamolnar2013-06-071-1/+6
* | Fix spacing in calls to LogManager::Log.Gravatar Peter Powell2013-05-191-1/+1
* | Allow spaces (and more) in oper types•••The spaces are converted to '_' characters in OPERTYPE for 2.0 servers Issue #533 suggested by @ankitkv Gravatar attilamolnar2013-05-161-1/+1
* | Tidy up keywords on module methods.•••- Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. Gravatar Peter Powell2013-05-151-3/+3
* | Tidy up source files:•••- Use #pragma once instead of include guards. - Move header files in src/modules to include/modules. - Fixed various spacing issues. Gravatar Peter Powell2013-04-121-1/+1
* | Add LOG_ prefix to the log level enum values.Gravatar Peter Powell2013-04-121-1/+1
* | Convert ISUPPORT to use a map instead of a string.Gravatar Peter Powell2013-04-111-1/+7
* | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper()Gravatar attilamolnar2013-04-101-2/+2
* | Whitespace and empty destructor removal, minor coding style changesGravatar attilamolnar2013-04-011-4/+0
* | Remove some dead code:•••- Conditions in m_httpd_stats which can never be true. - Commented out code in m_sqloper. - Unused macro in inspircd.h. Gravatar Peter Powell2013-04-011-2/+1
|/
* Fix multiple escape bugs in m_httpd_stats.Gravatar Peter Powell2013-02-171-5/+14
* Dynamically determine the size of the eventlist[] passed to Attach()•••m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove Gravatar attilamolnar2012-12-021-1/+1
* Attach to events and register services in init()Gravatar attilamolnar2012-12-021-1/+2
* Replace copyright headers with headers granting specific authors copyrightGravatar Robby-2012-04-191-8/+18
* Allow opermotd to specify its file in <files> without also requiring an <oper...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12355 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2010-02-021-10/+0
* Move revision information from Version object to a static symbol•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12256 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2010-01-141-1/+1
* ...because every now and again, i have to do a massive commit.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar brain2010-01-111-1/+1
* Add Inspircd::AddServices•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12135 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-11-151-3/+3
* Clean up typos and some unused code•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11980 e03df62e-2008-0410-955e-edbf42e46eb7 Gravatar danieldg2009-10-301-10/+23