| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove unnecessary string copies and dead code | attilamolnar | 2013-06-05 | 1 | -1/+1 |
| * | cmd_who Hide +i users when listing users on a server and hidewhois is off•••Fixes #547 reported by @RawrDragon
| attilamolnar | 2013-06-01 | 1 | -1/+1 |
| * | Update authors | attilamolnar | 2013-05-23 | 1 | -7/+8 |
| * | cmd_stats List opers without iterating the whole userlist | attilamolnar | 2013-04-01 | 1 | -5/+6 |
| * | cmd_invite Check if the inviting user is on the channel before potentially te... | attilamolnar | 2013-04-01 | 1 | -8/+8 |
| * | cmd_kill Send snotice to servers when both the oper and the victim are on the... | attilamolnar | 2013-03-29 | 1 | -1/+4 |
| * | cmd_lusers Fix miscounting | attilamolnar | 2013-03-27 | 1 | -3/+3 |
| * | cmd_lusers Be smart and know how many invisible users are there without itera... | attilamolnar | 2013-03-03 | 1 | -4/+41 |
| * | cmd_lusers Use of size() instead of counting elements | attilamolnar | 2013-03-03 | 1 | -3/+2 |
| * | cmd_lusers Refresh max local/global user counters after a user connects•••Fixes #423 reported by @RawrDragon
| attilamolnar | 2013-03-03 | 1 | -11/+38 |
| * | cmd_lusers Convert to a module | attilamolnar | 2013-03-03 | 1 | -1/+21 |
| * | cmd_invite Send invite announcements to halfops and higher when <security:ann...•••Clarify what the various options mean in the doc
Fixes #418 reported by @RawrDragon
| attilamolnar | 2013-02-11 | 1 | -16/+22 |
| * | cmd_invite Correct error message when the user has no privs to invite and no ... | attilamolnar | 2013-02-11 | 1 | -2/+4 |
| * | Add IS_SERVER() and REG_ALL checks to (mostly oper only) commands taking a ta...•••If a SID was passed as the target user parameter or when it's an unregistered user reply with the "no such nick" (or the moral equivalent) message
| attilamolnar | 2012-12-15 | 5 | -12/+12 |
| * | Register all commands, modes and extensions using AddService()•••AddService() throws an exception if an item cannot be registered, modules no longer need to worry about AddMode() etc. failing
| attilamolnar | 2012-12-02 | 1 | -1/+1 |
| * | Attach to events and register services in init() | attilamolnar | 2012-12-02 | 1 | -0/+4 |
| * | Add a typedef for LocalUserList | attilamolnar | 2012-11-29 | 3 | -4/+4 |
| * | cmd_rehash, m_spanningtree Fix REHASH messages duplicating at each hop•••Fixes #375 reported by @JDowny
| attilamolnar | 2012-11-29 | 1 | -4/+3 |
| * | Change empty string assignments to .clear() or remove them entirely•••Part 2 of ba5c0db795824c3fc1ad48ce332d7bdc440cb77f
| attilamolnar | 2012-11-28 | 1 | -8/+4 |
| * | Fix /RESTART not closing file descriptors•••Fixes issue #262 reported by @MistrX
| attilamolnar | 2012-10-21 | 1 | -0/+16 |
| * | Make better use of User::GetFullRealHost() | attilamolnar | 2012-10-21 | 4 | -12/+9 |
| * | Fix KILL accepting SIDs, get rid of potentially unsafe snprintf and strlcpy | attilamolnar | 2012-10-21 | 1 | -7/+10 |
| * | 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 | -4/+30 |
| * | Remove superfluous std::string()s | attilamolnar | 2012-10-12 | 5 | -7/+7 |
| * | Fix unregistered users getting global notices, also fix certain commands work... | attilamolnar | 2012-10-12 | 3 | -3/+3 |
| * | Add myself to the Other Contributors list | Adam | 2012-10-11 | 1 | -0/+1 |
| * | Fix more undefined behavior caused by referencing the returned buffer by std:...•••See 83c7cc45daf6fb1f8c36f15297a4657e45a34e88
| attilamolnar | 2012-09-30 | 6 | -6/+12 |
| * | Don't allow banned users to NOTICE a channel when security:restrictbanneduser...•••Fixes #297 reported by @killerrabbit
| attilamolnar | 2012-09-13 | 1 | -0/+9 |
| * | Fixed Windows build | Adam | 2012-07-17 | 1 | -0/+4 |
| * | Move STATS handler back to cmd_stats so it's hotpatchable again | attilamolnar | 2012-07-13 | 1 | -1/+340 |
| * | cmd_commands Don't show server only commands to users | attilamolnar | 2012-07-11 | 1 | -0/+4 |
| * | cmd_stats Remove unused preprocessor stuff (it has been living in stats.cpp f... | attilamolnar | 2012-07-07 | 1 | -11/+0 |
| * | Fix to show ERR_NEEDMOREPARAMS for cmd_userhost and cmd_ison | Shawn Smith | 2012-07-06 | 2 | -9/+9 |
| * | Added color codes to /rules, moved the parsing to ServerConfig and cleaned th... | Justin Crawford | 2012-07-06 | 2 | -64/+1 |
| * | Remove leftover #ifdefs and #includes from cmd_*.cpp | attilamolnar | 2012-07-02 | 17 | -123/+1 |
| * | Fix pending invites not being removed when a channel was deleted or had its T... | attilamolnar | 2012-06-17 | 1 | -3/+3 |
| * | Debian typo fixes. | Peter Powell | 2012-05-25 | 1 | -1/+1 |
| * | Check whether it is empty parameter before checking its value | Chin Lee | 2012-05-16 | 1 | -1/+1 |
| * | Fix issue #120 reported by @swilde | Chin Lee | 2012-05-16 | 1 | -1/+1 |
| * | Merge pull request #109 from Justasic/insp20•••Rewrote the color codes parser to one function, not two | Robin Burchell | 2012-05-14 | 1 | -43/+43 |
| |\ |
|
| | * | Rewrote the color codes parser to be one function, not two | Justin Crawford | 2012-05-03 | 1 | -43/+43 |
| * | | Merge pull request #96 from Justasic/insp20•••[2.0] Process escape sequences for MOTD for issue #23 | Robin Burchell | 2012-05-03 | 2 | -2/+64 |
| |\| |
|
| | * | Fixed using a function on every call for /motd, causing lag on large networks... | Justin Crawford | 2012-04-22 | 2 | -11/+21 |
| | * | Added C/C++ style escape codes for color codes in the MOTD along with @SaberU... | Justin Crawford | 2012-04-21 | 1 | -1/+53 |
| * | | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 53 | -436/+814 |
| |/ |
|
| * | Fixes for bug #12 | Justin Crawford | 2012-04-14 | 10 | -20/+20 |
| * | This fixes issue #39 reported by @attilamolnar.•••Thanks to @attilamolnar for supplying the code.
| Shawn Smith | 2012-04-12 | 1 | -1/+1 |
| * | Typo fixes. | Peter Powell | 2012-03-21 | 1 | -1/+1 |
| * | Move my name from regular contributors to developers | Jackmcbarn | 2011-09-28 | 1 | -10/+11 |
| * | Quick fix for /RESTART crashing | Daniel De Graaf | 2010-06-12 | 1 | -12/+5 |