| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-08-21 | Core/WorldSession: Added research notes about CMSG_AUTH_SESSION values and ↵ | Shauren | |
| reordered checks during login to always initialize encryption first to make sure the client can read failure packet | |||
| 2014-08-16 | Core/DBLayer: Fixed an incredibly rare memory leak happening when player ↵ | Shauren | |
| started loading from database and never finished | |||
| 2014-08-15 | Core/Socket: Added helpers to retrieve the size of currently ready data | Shauren | |
| 2014-08-14 | Core/Creature: update creature_template and some other small things | joschiwald | |
| http://www.trinitycore.org/f/topic/9572-creature-damage/ | |||
| 2014-08-12 | Core/Threading: Fixed possible race condition with m_timeOutTime and fixed ↵ | Shauren | |
| Thread #1: pthread_cond_{signal,broadcast}: dubious: associated lock is not held by any thread in PCQ | |||
| 2014-08-11 | Core/NetworkIO: Prevent queueing more async operations when socket is ↵ | Shauren | |
| already closed | |||
| 2014-08-11 | Core/NetworkIO: Restore networking related scripting hooks | leak | |
| Closes #12607 | |||
| 2014-08-11 | Kill potentially uninitialized variable warning | leak | |
| 2014-08-10 | Resolve shutdown crash/leak if MySQL server is not running | leak | |
| Fixes #12734 | |||
| 2014-08-10 | Core: Fix non pch build | Vincent-Michael | |
| 2014-08-10 | Core/NetworkIO: Prevent double closing the same socket | Shauren | |
| 2014-08-10 | Core/Misc: Removed ACE leftovers | Shauren | |
| 2014-08-10 | Core/NetworkIO: Allow receiving packets bigger than buffer size and properly ↵ | Shauren | |
| handle situations where not entire packet was read in one go Core/Authserver: Restored authenticator functionality | |||
| 2014-08-10 | Core: Fix build for Intel Composer XE | Vincent-Michael | |
| 2014-08-09 | Core/Server: Use nullptr instead of 0 where pointers are expected | DDuarte | |
| 2014-08-09 | Core/Server: Add missing overrides | DDuarte | |
| 2014-08-08 | Core/NetworkIO: Handle exceptions thrown from socket constructor when ↵ | Shauren | |
| retrieving remote address | |||
| 2014-08-07 | Revert "Core: Fix build for vs2014" | Vincent-Michael | |
| This reverts commit e3034511890f4c918d758a6b6b239c14f10b75e2. | |||
| 2014-08-07 | Core: Fix build for vs2014 | Vincent-Michael | |
| 2014-08-07 | Core/Socket: Fix typo in constructor | Duarte Duarte | |
| Using moved objects is generally a bad idea Thanks @Daejiv Closes #12800 | |||
| 2014-08-07 | Core: Kill AGAIN whitespace :( | Vincent-Michael | |
| 2014-08-07 | Core: Fix non pch build | Vincent-Michael | |
| 2014-08-06 | Prevent reading address information from potentially closed socket | leak | |
| 2014-08-06 | Core/Misc: Fixed textlike/hexlike methods of ByteBuffer to print properly | Shauren | |
| 2014-08-05 | Core: Fix build for shit OS | Vincent-Michael | |
| Closes #12597 | |||
| 2014-08-02 | Core/Shared: Fix world and auth crash on shutdown (PCQ & DbWorker) | DDuarte | |
| Fixes #12704 | |||
| 2014-07-29 | Scripts/OutdoorPvP: replaced some chat texts with proper defense messages | joschiwald | |
| 2014-07-29 | Core/Config: User-friendlyfy configuration parsing errors | DDuarte | |
| It will now print useful error messages that pinpoint the issue with the config file (missing file, bad syntax, etc) In memory of MitchesD that lost 18 hours finding a problem with his config because of a duplicated line. | |||
| 2014-07-29 | Update Socket.h | Shauren | |
| Added missing typename keyword | |||
| 2014-07-29 | Core/Socket: Fixed expected template evaluated type for AsyncWrite if ↵ | Shauren | |
| PacketType is a pointer (Bla* const& is not what we want) | |||
| 2014-07-28 | Core/Networking: Attempt to fix some exceptions | DDuarte | |
| Call the non-throwing versions of socket.remote_endpoint in GetRemoteIpAddress and GetRemotePort. Sh*t will still be broken tho | |||
| 2014-07-27 | Fixed a rare crash case when authserver socket was forcefully closed during read | leak | |
| Closes #12634 | |||
| 2014-07-27 | Core/Network: Optimized packet sending by removing unneccessary memory copying | Shauren | |
| 2014-07-27 | Core/Network: Allow storing any packet types in Socket write queue to reduce ↵ | Shauren | |
| the amount of copying going on | |||
| 2014-07-27 | Fixed gcc build | Shauren | |
| 2014-07-26 | Core/Network: Refactored socket code, moved common operations to base Socket ↵ | Shauren | |
| class | |||
| 2014-07-26 | Added comments to 6961f957c9d03bff634f0b75466458564845722e to make sure ↵ | Shauren | |
| noone decides that storing the result in a variable is unneccessary | |||
| 2014-07-26 | Core/DBLayer: Fixed possible crashes with async queries retrieving result | Shauren | |
| Closes #12655 | |||
| 2014-07-25 | Core/PreparedStatements: Fixed a change I missed in the World prepared ↵ | Subv | |
| statements for waypoints. | |||
| 2014-07-25 | Core/Waypoints: Allow the table waypoint_data to use Takeoff and Land waypoints. | Subv | |
| 2014-07-25 | Core/Shared: Change rand32 to return uin32 instead of int32 | DDuarte | |
| Fixes a crash that happened when rand32 returned negative values. Also updated some related comments that were outdated since we changed to SFMT. Closes #12638 | |||
| 2014-07-24 | Core/Misc: Fixed a possible crash in ProducerConsumerQueue::Cancel | Shauren | |
| 2014-07-24 | Core/Common: Remove the no longer finite(x) macro for MSVC | DDuarte | |
| Use std::isinfinite(f) instead. | |||
| 2014-07-23 | Core/Misc: Silenced 500 OS X Warnings and removed deprecated finite() method. | Jared P. Jones | |
| *Mac OS X fires off over 200 warnings related to gsoap about the deprecated register method. CMake has been patched to remove this warning. *Updated all occurences of finite() to std::isfinite. The method finite() is not standardized by anyone aside from BSD. std::isfinite() however is standarized by C++ *Removed -ncurses and -pthread from OS X compilation. Now that we use Boost and C++11 there is no longer a need for pthread in OS X. All it does is throw a warning. However, ncurses isn't needed either as it's built into the OS X SDK and linked by default. Note: There are only 5 remaining warnings left when compiling on OS X. I did not attempt to fix these as they were related to 3rd party libraries statically linked into the code. The 5 warnings left are all related to unused variables. | |||
| 2014-07-22 | Core/Misc: Remove a define that is no longer needed since ACE was removed | DDuarte | |
| 2014-07-21 | Core/DatabaseWorkerPool: Delete PCQ in dtor rather than in Close() and ↵ | leak | |
| cancel queue properly before doing so | |||
| 2014-07-21 | Core/PreparedStatements: Fixed a Coverity warning | Sebastian Valle Herrera | |
| 2014-07-21 | Core: Kill again whitespace :( | Vincent-Michael | |
| 2014-07-20 | Fixed gcc build without pch | Shauren | |
| 2014-07-20 | Core: Fix non pch build (gcc) | Vincent-Michael | |
