aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_httpd_stats.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add {To,From}{Human,Internal,Network} to ExtensionItem.Gravatar Peter Powell2019-08-071-1/+1
| | | | Also, deprecate the old SerializeFormat/serialize/unserialise API.
* Replace GetServerPort() with server_sa.port().Gravatar Peter Powell2019-02-151-1/+1
|
* Expand searching in m_httpd_stats, add global handling of GET parameters (#1566)Gravatar linuxdaemon2019-02-061-26/+164
|
* Refactor m_httpd_stats, add subpages (#1554)Gravatar linuxdaemon2019-01-281-146/+226
|
* Rename User::fullname to realname and make it private.Gravatar Peter Powell2018-07-301-1/+1
|
* Change some usage of "gecos" to "real name"Gravatar genius30002018-04-111-2/+2
| | | | | | Within the example configs, helpops, some server sent messages, and simple code comments: change the primary usage of "gecos" to "real name" (or "realname" where fitting).
* Change ServerInfo::gecos to descriptionGravatar genius30002018-04-111-3/+3
|
* Hide User#host and User#dhost and use accessors to modify them.Gravatar Peter Powell2017-10-281-1/+1
| | | | | This removes the need to invalidate the cache after changing a user's hostname.
* Remove INSPIRCD_SOCKETENGINE_NAME and INSPIRCD_SYSTEM.Gravatar Peter Powell2017-10-151-1/+1
| | | | | | | | | | - 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.
* 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()Gravatar Attila Molnar2016-12-301-1/+1
| | | | | | | | Prefix the returned string with '+'
* | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵Gravatar Attila Molnar2016-02-251-3/+5
| | | | | | | | parameters
* | 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>Gravatar Attila Molnar2015-02-121-7/+1
| | | | | | | | | | | | Uptime can be calculated easily from the boot time
* | | 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
| | | | | | | | Extensible storage
* | 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
| | | | | | | | never NULL
* | 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 dataGravatar Attila Molnar2014-01-211-2/+1
| | | | | | | | Fix clang warning
* | Remove some pointless code:Gravatar Peter Powell2013-12-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | 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.Gravatar Peter Powell2013-08-041-1/+1
| | | | | | | | | | | | | | | | 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.
* | 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 typesGravatar attilamolnar2013-05-161-1/+1
| | | | | | | | | | The spaces are converted to '_' characters in OPERTYPE for 2.0 servers Issue #533 suggested by @ankitkv
* | Tidy up keywords on module methods.Gravatar Peter Powell2013-05-151-3/+3
| | | | | | | | | | - 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.
* | Tidy up source files:Gravatar Peter Powell2013-04-121-1/+1
| | | | | | | | | | | | - Use #pragma once instead of include guards. - Move header files in src/modules to include/modules. - Fixed various spacing issues.
* | 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:Gravatar Peter Powell2013-04-011-2/+1
|/ | | | | | - Conditions in m_httpd_stats which can never be true. - Commented out code in m_sqloper. - Unused macro in inspircd.h.
* 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()Gravatar attilamolnar2012-12-021-1/+1
| | | | m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove