| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 1 | -2/+2 | ||
| * | Switch the default datetime format to something easier to read. | 2017-10-20 | 1 | -1/+1 | ||
| * | Move the OnCheckExemption hook out of the core. | 2017-03-20 | 1 | -25/+0 | ||
| * | Fix InspIRCd::StripColor() stripping characters that shouldn't be stripped | 2015-12-29 | 1 | -1/+1 | ||
| * | Strip all control codes except \001 in InspIRCd::StripColor()•••Fixes issue #1100 reported by @uecasm | 2015-12-08 | 1 | -1/+2 | ||
| * | Deduplicate code in InspIRCd::FindNick() | 2015-12-07 | 1 | -8/+1 | ||
| * | Move InspIRCd::SendError() to cmd_die•••Fix multiple ERROR messages being sent to unregistered users by removing the "Exiting with status..." message | 2015-05-17 | 1 | -19/+0 | ||
| * | Move OnWhois* events to core_whois, add Whois::Context•••Remove InspIRCd::SendWhoisLine() | 2015-04-28 | 1 | -20/+0 | ||
| * | Prepend target user nick to whois numerics in InspIRCd::SendWhoisLine() | 2015-04-28 | 1 | -1/+3 | ||
| * | Access local user list via new UserManager::GetLocalUsers() and make local_us... | 2014-07-19 | 1 | -1/+2 | ||
| * | Move and rename typedef LocalUserList to UserManager::LocalList | 2014-07-19 | 1 | -1/+1 | ||
| * | Add parameter to InspIRCd::TimeString for UTC time formats.•••Missing doc added by @attilamolnar | 2014-06-25 | 1 | -2/+2 | ||
| * | Add formatting to InspIRCd::TimeString; switch all code to use it.•••m_httpd also now uses the correct timestamp format. Windows-specific fixes by @attilamolnar, original PR #849 | 2014-06-25 | 1 | -2/+10 | ||
| * | Switch to std::string::compare() from substr() in a couple of places | 2014-05-26 | 1 | -1/+1 | ||
| * | Change allocation of UserManager::clientlist to be physically part of the obj... | 2014-03-15 | 1 | -4/+4 | ||
| * | Change allocation of UserManager::uuidlist to be physically part of the objec... | 2014-03-14 | 1 | -2/+2 | ||
| * | Change allocation of InspIRCd::chanlist to be physically part of the object c... | 2014-03-14 | 1 | -2/+2 | ||
| * | Move server description field from TreeServer into Server; remove OnGetServer... | 2014-01-05 | 1 | -17/+0 | ||
| * | Introduce Server class•••- Replaces std::string server in User - Replaces InspIRCd::ULine() and SilentULine() | 2014-01-05 | 1 | -17/+0 | ||
| * | Clean up CoreException•••- Remove default constructor - Replace virtual functions returning C strings with functions returning const std::string refs | 2013-12-18 | 1 | -2/+2 | ||
| * | Fix issues discovered by Coverity•••- Fix resource leak in InspIRCd::Format() - Explicitly set NewServices to NULL before the object it points to goes out of scope | 2013-12-18 | 1 | -0/+2 | ||
| * | Use WriteNumeric() everywhere we send numerics and include the user's nick au... | 2013-11-12 | 1 | -1/+1 | ||
| * | Move prefix mode specific fields and getters into PrefixMode•••Add ModeHandler::IsPrefixMode() | 2013-09-11 | 1 | -1/+1 | ||
| * | Merge insp20 | 2013-08-30 | 1 | -1/+20 | ||
| |\ | ||||||
| | * | Fix crash caused by passing a large integer to ctime()•••In addition to verifying the return value of localtime(), correct tm_year if it is out of bounds Reported by @JDowny | 2013-08-27 | 1 | -1/+20 | ||
| * | | Change the syntax of FOREACH macros to be less dumb. | 2013-08-04 | 1 | -1/+1 | ||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | ||
| * | | Move a few trivial functions into headers | 2013-06-02 | 1 | -6/+0 | ||
| * | | Some systems with whacky va_list implementations do undefined stuff when vsnp... | 2013-05-23 | 1 | -3/+15 | ||
| * | | Merge pull request #545 from SaberUK/master+logging-cleanup•••Clean up the logging system (part 1 of 2). | 2013-05-21 | 1 | -23/+1 | ||
| |\ \ | ||||||
| | * | | Fix spacing in calls to LogManager::Log. | 2013-05-19 | 1 | -1/+1 | ||
| | * | | Purge a ton of code related to non <log> related logging.•••- InspIRCd::OpenLog - ./inspircd --logfile [file] This is no longer needed now we have (since 1.2) custom logging. | 2013-05-19 | 1 | -22/+0 | ||
| * | | | Fixup last commit | 2013-05-20 | 1 | -1/+1 | ||
| * | | | Replaced vsnprintf with VAFORMAT pretty much everywhere. | 2013-05-18 | 1 | -7/+3 | ||
| * | | | Added macro to allow simpler logic in functions with the need to vsnprintf | 2013-05-18 | 1 | -5/+8 | ||
| |/ / | ||||||
| * | | Remove the size argument from IsChannel and IsNick.•••There was only one case (which was probably an error) where these methods were not set to their ServerLimits value. | 2013-05-18 | 1 | -4/+4 | ||
| * | | Added a function to replace all the ugly sprintf-ing everywhere | 2013-05-16 | 1 | -0/+13 | ||
| * | | Add method for writing server notices.•••This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name. | 2013-05-14 | 1 | -2/+2 | ||
| * | | Remove const char* versions of InspIRCd::FindNick()/FindNickOnly()/FindUUID()... | 2013-04-13 | 1 | -39/+0 | ||
| * | | Add LOG_ prefix to the log level enum values. | 2013-04-12 | 1 | -2/+2 | ||
| * | | Convert ISUPPORT to use a map instead of a string. | 2013-04-11 | 1 | -20/+0 | ||
| * | | Convert InspIRCd::Duration() to be static | 2013-04-03 | 1 | -1/+1 | ||
| * | | Change IsNickHandler()/IsIdentHandler()/IsChannelHandler() to use C++ strings... | 2013-04-01 | 1 | -27/+14 | ||
| * | | Convert IsSID() to a static member function, modules shouldn't override it | 2013-04-01 | 1 | -1/+1 | ||
| |/ | ||||||
| * | Remove ServerLimits::Finalise(), it's completely wrong•••Truncate <limits:identmax>+1 long idents in User::ChangeIdent() | 2012-12-09 | 1 | -2/+2 | ||
| * | Add a typedef for LocalUserList | 2012-11-29 | 1 | -1/+1 | ||
| * | Have FindUUID(const char*) call FindUUID(const std::string&), not the other w... | 2012-11-28 | 1 | -5/+5 | ||
| * | Move ServerConfig::ProcessColors() into class InspIRCd, as a helper function•••Change signature to accept a file_cache reference so modules can use it easily | 2012-10-29 | 1 | -0/+57 | ||
| * | Fix for #268.•••- Move color stripping code to helperfuncs. - Strip color codes before matching filters. | 2012-10-19 | 1 | -0/+27 | ||
| * | Replace printf(_c) with iostream | 2012-10-14 | 1 | -2/+3 | ||
