| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
| Josh Soref | 2021-06-21 | 1 | -2/+2 |
| * | Update copyright headers. | InspIRCd Robot | 2021-03-05 | 1 | -1/+1 |
| * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -2/+8 |
| * | Fix some remaining uses of ato[il]. | Peter Powell | 2019-08-13 | 1 | -5/+5 |
| * | Allow multiple fingerprints in an oper block (#1564) | linuxdaemon | 2019-02-01 | 1 | -0/+10 |
| * | Implement support for the extended tag space for client tags. | Peter Powell | 2019-01-24 | 1 | -2/+2 |
| * | Move message parsing to ProcessBuffer and fix edge cases in it. | Peter Powell | 2018-08-10 | 1 | -3/+2 |
| * | Split irc::tokenparser::GetToken into GetMiddle and GetTrailing.•••This simplifies the logic of irc::tokenparser considerably and
removes all of the magic index guessing that was used previously.
| Peter Powell | 2018-08-10 | 1 | -14/+39 |
| * | Remove the integer overloads of irc::tokenparser::GetToken().•••The int overload was never used and the long overload was used in
one place.
| Peter Powell | 2018-08-10 | 1 | -16/+0 |
| * | Replace irc::stringjoiner with a generic stdalgo::string::join.•••This can also be used with different types of collection containing
values which are not a string.
| Peter Powell | 2018-07-26 | 1 | -12/+0 |
| * | Replace the remaining use of irc::string with irc::find. | Peter Powell | 2018-04-16 | 1 | -52/+32 |
| * | Remove <alias:matchcase> and associated code.•••This was never documented and seems pretty useless.
| Peter Powell | 2017-08-13 | 1 | -33/+0 |
| * | Create irc::equals() from StrHashComp•••Make StrHashComp a wrapper around it
| Attila Molnar | 2016-08-22 | 1 | -1/+1 |
| * | Remove unused irc::tokenstream::GetToken() overload accepting an irc::string | Attila Molnar | 2016-08-22 | 1 | -8/+0 |
| * | Remove unused irc::hash | Attila Molnar | 2016-08-22 | 1 | -8/+0 |
| * | Merge insp20 | Attila Molnar | 2015-04-20 | 1 | -2/+2 |
| |\ |
|
| | * | Fix various Clang warnings.•••- warning: 'register' storage class specifier is deprecated.
| Peter Powell | 2015-02-26 | 1 | -2/+2 |
| * | | Reduce std::string::substr() usage•••substr() returns a new string while erase() and assign() modify the existing one
| Attila Molnar | 2015-01-10 | 1 | -5/+4 |
| * | | Remove irc::modestacker | Attila Molnar | 2014-09-03 | 1 | -65/+0 |
| * | | Kill needless #includes in source files | Attila Molnar | 2014-06-14 | 1 | -1/+0 |
| * | | Convert irc::stringjoiner to be a method instead of a class.•••Add separator parameter
| Peter Powell | 2014-02-06 | 1 | -3/+5 |
| * | | Add functor that does strict weak ordering based on national_case_insensitive... | Attila Molnar | 2014-01-04 | 1 | -0/+19 |
| * | | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 2013-07-04 | 1 | -2/+0 |
| * | | Simplify stringjoiner: take 1 parameter, join from begin() to end() and use s... | attilamolnar | 2013-06-12 | 1 | -5/+5 |
| * | | s/seperator/separator/g | Adam | 2013-06-02 | 1 | -3/+3 |
| * | | Rewrote sepstream and tokenstream to be less ugly | Adam | 2013-06-02 | 1 | -62/+37 |
| * | | Move a few trivial functions into headers | attilamolnar | 2013-06-02 | 1 | -5/+0 |
| * | | irc::tokenstream and irc::sepstream cleanup•••irc::sepstream does not require virtual methods
| attilamolnar | 2013-05-18 | 1 | -8/+0 |
| * | | irc::stringjoiner cleanup•••- Get rid of unused constructors
- signed -> unsigned
- return const ref from GetJoined()
| attilamolnar | 2013-05-18 | 1 | -23/+3 |
| * | | Deduplicate hex string creation code | attilamolnar | 2013-05-18 | 1 | -21/+0 |
| * | | irc::Spacify-- | attilamolnar | 2013-05-16 | 1 | -11/+0 |
| * | | Fix building with libc++.•••- Purged std::tr1::strlower (was never used).
- Moved std::tr1::insensitive to irc::insensitive.
- Added TR1NS macro to point to the correct C++ TR1 namespace.
| Peter Powell | 2013-04-19 | 1 | -23/+14 |
| * | | Purge the deprecated hash_map from existance. | Peter Powell | 2013-04-01 | 1 | -89/+97 |
| |/ |
|
| * | Change empty string assignments to .clear() or remove them entirely•••Part 2 of ba5c0db795824c3fc1ad48ce332d7bdc440cb77f
| attilamolnar | 2012-11-28 | 1 | -1/+1 |
| * | Windows: In-depth cleanup (see details)•••-Fix x64 builds for Windows. Now all configurations compile.
-Remove the non-working rebase stuff.
-Remove the Windows fork hack and instead use FreeConsole() to emulate the behavior. This directly allows us to compile with ASLR, which is turned on now.
-Remove the old IPC mechanism for the removed GUI. This is not needed anymore as the GUI wasn't ever supported on anything newer than 1.2
-Remove the WIN32/WINDOWS macros. _WIN32 is supported on all x86-based VC++ targets, so that's what we need.
-Enable optimizations for release builds.
-De-duplicate printf_c(), it was previously copy-pasted into colors.h for configure
-Add the VC++ specific bad files in .gitignore
-Disable PID writing on Windows. This is only making sense for *nix builds.
-Replace the CPU usage retrieval with an algorithm analogous to the *nix behavior. Also supports separated now/total values. (Tested with a dummy busy loop - seems working)
-Removed certain unused functions and variables
-Remove stdint defines from the windows wrapper
-Remove CRT debug alloc. This is a bad idea as it would define a macro to replace free which breaks builds.
-Re-evaluated the warnings list, commented it.
-Moved inspircd_config/_version to include/ to match *nix
-Removed the creation of inspircd_se_config, as it isn't used at all.
-Made non-git builds show as "r0" instead of "r" (thanks to @SaberUK for pointing this out)
-Fixed up m_spanningtree's project paths. Now all configurations (debug/release x86/x64) have been tested and build properly.
-Moved FindDNS out of the wrapper and matched its log behavior with *nix. (It's pointless having it in the wrapper after the recent slimming down)
-Replaced random/srandom wrappers with a mechanism that tries to use Windows' Random API first is no SSL module is loaded.
-Removed more old junk from support for compilers older than VC++ 2010 (we don't have project files for these, so compiling them would be hard anyways)
-Removed the unused ClearConsole()
-Removed unused includes from the wrapper. Also, do not include psapi.h here if we don't link psapi.lib. This should be done where appropriate.
-Made inet_aton an inline function for increased performance
-C4800, performance warning about bool forcing, resolved at all occurrences.
-C4701, uninitialized variable 'cached', resolved at all occurrences.
-dlerror() was migrated out of the wrapper for more thread safety (no global buffer being shared) and increased performance.
-Removed the wrong CRT debug flags. This drains a lot of performance.
-Removed the clock_gettime/gettimeofday wrappers
-Replaced all TCHAR/ANSI mix-ups of functions with the correct respective function.
-Added a block of C4355 for < VS2012
-Update project files for c870714
| ChrisTX | 2012-10-12 | 1 | -12/+5 |
| * | Fix allow_overlapped having the opposite effect in irc::portparser | attilamolnar | 2012-07-11 | 1 | -1/+1 |
| * | Don't manage memory manually for the commasepstream in irc::portparser | attilamolnar | 2012-07-11 | 1 | -9/+4 |
| * | Use std::set instead of std::map in irc::portparser | attilamolnar | 2012-07-11 | 1 | -8/+1 |
| * | Don't throw an exception if passed bad parameters to stringjoiner.•••It's far too common to "misuse" this API by accidentally trying to use
stringjoiner with an empty container, and fixing that is more or less adding
boilerplate in every place we fix it.
Instead, let's just return and not touch the string, and not throw.
Done-with: Attila Molnar <attilamolnar@hush.com>
| Robin Burchell | 2012-07-01 | 1 | -3/+3 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+17 |
| * | Fixed Windows build on VS 2010 | Adam | 2011-04-10 | 1 | -1/+1 |
| * | Revert to old sepstream logic until a proper fix is finished | Jackmcbarn | 2011-04-01 | 1 | -5/+14 |
| * | Fix sepstream logic when multiple consecutive separators are encountered | Jackmcbarn | 2011-03-28 | 1 | -14/+5 |
| * | Fix bug where an empty parameter is generated when input to a tokenstream end... | Jackmcbarn | 2011-01-22 | 1 | -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
| brain | 2010-01-11 | 1 | -1/+1 |
| * | Move forward declarations to typedefs.h•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11967 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-24 | 1 | -0/+58 |
| * | Remove InspIRCd* parameters and fields•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-26 | 1 | -1/+1 |
| * | Replace std::deque with std::vector in spanningtree and related modules•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11593 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-02 | 1 | -7/+8 |
| * | win: Last part of support required for VS2010:•••NEEDS COMPILE TESTING ON: gcc3 (if possible), gcc4, vs2008.
- Check for vs2010 in hash_map.h
- use unordered_map if it exists
- change all map creations to:
#if defined(WINDOWS) && !defined(HASHMAP_DEPRECATED)
// old windows crap
#else
#if HASHMAP_DEPRECATED
// tr1/gcc crap
#endif
#endif
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11524 e03df62e-2008-0410-955e-edbf42e46eb7
| w00t | 2009-08-15 | 1 | -7/+7 |
| * | Fix irc_char_traits::find to behave correctly when the character is not found...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11291 e03df62e-2008-0410-955e-edbf42e46eb7
| special | 2009-04-07 | 1 | -1/+1 |