| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-19 | Authserver: Fix typo | Gacko | |
| 2014-02-05 | Remove whitespaces from previous commit | Gacko | |
| 2014-02-05 | Authserver / Worldserver: Fix warnings about unused variables | Gacko | |
| 2014-01-30 | Fix warnings introduced on littleendian in ↵ | QAston | |
| 2134cb610d45727a0623741f7416a360882133fa This fix prevents possible issues on bigendian machines. Don't use c style casts ppl, it's evul. | |||
| 2014-01-26 | Fix incorrect debug log in authserver | QAston | |
| 2014-01-26 | Remove unneeded bigendian checks (they're already part of EndianConvert). | QAston | |
| 2014-01-01 | Update copyright note for 2014. | Vincent_Michael | |
| Happy new year. | |||
| 2013-12-28 | Core/Misc: Fix warnings | jackpoz | |
| Fix warnings appearing with -Wstrict-aliasing flag. | |||
| 2013-12-22 | Core/Auth: Fix expiring account bans | jackpoz | |
| Fix a database race condition in authserver that would delay the account ban expiry by 1 login because the query that would have removed the ban was executed asynchronously. | |||
| 2013-11-16 | Core/Auth: Fix Auth failing sometimes | jackpoz | |
| Fix a database race condition between authserver saving session key to database asynchronously and worldserver reading it; session key is now saved synchronously. | |||
| 2013-11-08 | Core/Logging: Remove LOG_FILTER_XXX defines with it's value (remember logger ↵ | Spp | |
| names are case-sensitive) | |||
| 2013-11-08 | Core/Logs: Create default set of loggers and Appender if the config is wrong. | Spp | |
| - Logger root (Error) - Logger server (Info) - Appender Console Logger names are case-sensitive, Appender names are not. | |||
| 2013-11-07 | Core/Logging: Extend logging system to allow inheritance of loggers | Spp | |
| - Changed default loggers and appenders - '.' determines the relation between loggers ("type.subtype" inherits "type" logger setting if logger "type.subtype" is not defined) - When core logs a message it search for the correct logger (root is the default one) ie: a message logged with "type.subtype" * Core will try to find a logger with name "type.subtype", if its not found then will search for "type", again if its not found it will return the default one "root" | |||
| 2013-10-28 | Core/Code: Unify [more] codestyle for brackets: )\n{\n} to ) { }. | leguybrush | |
| 2013-10-27 | Core/Code: Unify codestyle for brackets: {} to { }. | Ascathor | |
| Also added missing copyright to some files. | |||
| 2013-10-05 | Core/Auth: Mitigate DoS attacks to authserver | jackpoz | |
| Mitigate DoS attacks to authserver like "Wow Auth Flooder.exe" by allowing a finite number of AUTH_LOGON_CHALLEGE packets in a row from same socket, 3 sounds like a reasonable limit. | |||
| 2013-09-03 | Core/Misc: Fixed some more issues found by static code analysis tools. | Sebastian Valle | |
| 2013-09-02 | Auth/Misc: Code cleanup. | Chaplain | |
| *Random performance optimizations | |||
| 2013-08-25 | Core&Tools: Fix warnings and non-pch build | Nay | |
| 2013-08-25 | Core/Auth: Implement time-based token for user login as described in RFC 6238. | raczman | |
| New column in account table is a base32 of token key bytes, coincidentally it is the same format Google's Authenticator Android app uses. If you want that to work, set system time on server correctly and use ntpd. Closes #10527 Signed-off-by: Nay <dnpd.dd@gmail.com> | |||
| 2013-08-18 | Fix BigNumber::AsByteArray function by returning Auto_Ptr. | QAston | |
| Remove mutex from BigNumber class - it didn't do what it was advertised to do - consider using the "locked" array outside of the function in which it was "locked". | |||
| 2013-07-30 | Config: Change ProcessPriority default to 0 (Normal) | Nay | |
| On Linux, superuser (root) is required to set a process high priority and we shouldn't force that. (It's already set to 0 (Normal) in worldserver\Master.cpp and authserver\Main.cpp) | |||
| 2013-07-29 | Misc: Fix warnings and build | Nay | |
| Closes #10396 | |||
| 2013-07-28 | Servers: Fix typo | Nay | |
| 2013-07-28 | Servers: Enable UseProcessors and ProcessPriority settings to be used on Linux | Nay | |
| 2013-07-28 | Servers: Fix some code style issues in world and authserver | Nay | |
| 2013-07-15 | Core/Config: Refactored ConfigMgr | Shauren | |
| * Loading initial configuration files is now separate from loading any additional custom configs | |||
| 2013-06-15 | Missed change in previous commit | Shauren | |
| 2013-06-15 | Buildsystem/MSVC | Shauren | |
| * Fixed ACE PCH * Removed WheatyExceptionReport sources from shared project | |||
| 2013-05-30 | Core/Misc: Another batch of fixes for issues found by static analysis | Spp | |
| 2013-05-21 | Merge pull request #9822 from wowpsp/master | Aokromes | |
| Support 1.12.3 (build 6141) | |||
| 2013-05-21 | Core/Build: Fix compile under Ubuntu 13.04 and openSUSE 12.3 (and probably ↵ | Spp | |
| other new distros) Closes #9832 Closes #9740 | |||
| 2013-05-18 | support 1.12.3 (build 6141) | wowpsp | |
| 2013-05-13 | Core/Logging: Performance-related tweaks to logging system | Spp | |
| All sLog->out* functions (except outCommand atm) are replaced with TC_LOG_* macros. Memleak fix | |||
| 2013-04-22 | [Ip2nationLock] Implement the ip2nation lock country. | Bezo | |
| 2013-04-14 | Core/Buildsystem: Actually follow CONF_DIR path-directive when installing ↵ | click | |
| configuration-files on UNIX Fixes issue #9649 | |||
| 2013-03-22 | Core/Auth: Updated AuthResult enum | Shauren | |
| 2013-03-09 | Core: Remove unnecessary commas | WyldePointer | |
| Last element of enumerator does not need comma after it's value. Closes #9367 | |||
| 2013-03-09 | Buildsystem: Add support for compiling with MinGW on Windows | Nay | |
| Tested with: - Windows 8 x64 - MySQL 5.5.30 win32 - OpenSSL 1.0.1c (32 bits) - No PCH - MinGW with GCC 4.7.0 TODO: - Fix compile/link with PCH enabled - Fix compile with WheatyExceptonionReport enabled (ignored for now) - Fix compile of .rc files (ignored for now) - Test with more platforms | |||
| 2013-02-11 | Core/RealmSocket: Remove a not required #ifndef MSG_NOSIGNAL / #define ↵ | Nay | |
| MSG_NOSIGNAL 0 Somewhere in ACE overloads of send(), flags are default'ed to 0 if not provided | |||
| 2013-02-11 | Core/Sockets: Always try to send MSG_NOSIGNAL in peer().send() | Nay | |
| Fixes RASocket::authenticate crash "MSG_NOSIGNAL: If you send() to a remote host which is no longer recv()ing, you'll typically get the signal SIGPIPE. Adding this flag prevents that signal from being raised." Closes #5040 Thanks to @derex for the hint | |||
| 2013-02-08 | Core/Auth: Reverted part of fb43a92cc2aaffab42efebf025b6a12c01af8fde - ↵ | Shauren | |
| session key is still needed after logging in to be able to switch realms | |||
| 2013-01-27 | Core/Authserver: Added possibility to allow realm connections both from ↵ | Shauren | |
| "world" and local networks. | |||
| 2013-01-24 | Core/Log: Rotate logs when maximum size is exceeded, backup name will be ↵ | Spp | |
| "filename".datetime - This is an addition to 39c2d89 | |||
| 2013-01-16 | Core/Logging: Use correct realmId when logging to DB | Spp | |
| 2013-01-14 | Core/Misc: Apply codestyle to multiple files | Spp | |
| 2013-01-01 | Update copyright note for 2013. | Vincent_Michael | |
| Happy new year. | |||
| 2012-11-27 | Core/Misc: Set mode 0644 for files | Spp | |
| 2012-11-27 | Core/Authserver: Always send realm address to clients in dotted ip format. | Shauren | |
| 2012-11-09 | Core/Build: Enable Clang PCH support and OS X specific features | Spp | |
| Core: Fix warnings here and there | |||
