diff options
| author | megamage <none@none> | 2008-12-08 16:34:03 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2008-12-08 16:34:03 -0600 |
| commit | ce643187f06cd0b3829ab90deff335f5c9ec5a84 (patch) | |
| tree | dc09eece1fc5dce2a942bdc27a4a045518ef9daa /src/game/WorldSocket.cpp | |
| parent | 5321be4c0aa48daaf84ffd602d47e650e53403ef (diff) | |
*Update to Mangos 6888. Source: Mangos.
*Major change: Make corpse erase async, Avoid DB access on deleting guild member.
*Skip 6885 because of performance concern.
--HG--
branch : trunk
Diffstat (limited to 'src/game/WorldSocket.cpp')
| -rw-r--r-- | src/game/WorldSocket.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/WorldSocket.cpp b/src/game/WorldSocket.cpp index aeb2ef91811..0dab9c3d8d4 100644 --- a/src/game/WorldSocket.cpp +++ b/src/game/WorldSocket.cpp @@ -469,7 +469,7 @@ int WorldSocket::handle_input_missing_data (void) if (m_Header.space () > 0) { - // Couldn't receive the whole header this time + // Couldn't receive the whole header this time. ACE_ASSERT (message_block.length () == 0); errno = EWOULDBLOCK; return -1; @@ -503,7 +503,7 @@ int WorldSocket::handle_input_missing_data (void) if (m_RecvPct.space () > 0) { - //couldn't receive the whole data this time + // Couldn't receive the whole data this time. ACE_ASSERT (message_block.length () == 0); errno = EWOULDBLOCK; return -1; @@ -572,7 +572,7 @@ int WorldSocket::ProcessIncoming (WorldPacket* new_pct) if (closing_) return -1; - // Dump received packet + // Dump received packet. if (sWorldLog.LogWorld ()) { sWorldLog.Log ("CLIENT:\nSOCKET: %u\nLENGTH: %u\nOPCODE: %s (0x%.4X)\nDATA:\n", |
