mirror of
https://github.com/mangosfour/server.git
synced 2025-12-26 07:37:02 +00:00
[9750] Add structure of SMSG_REDIRECT_CLIENT (0x50D).
Thanks to TOM_RUS for help with research.
This commit is contained in:
parent
5d84dbb492
commit
ef979daddc
11 changed files with 51 additions and 11 deletions
|
|
@ -42,6 +42,7 @@
|
|||
|
||||
#include "Common.h"
|
||||
#include "Auth/AuthCrypt.h"
|
||||
#include "Auth/BigNumber.h"
|
||||
|
||||
class ACE_Message_Block;
|
||||
class WorldPacket;
|
||||
|
|
@ -121,6 +122,9 @@ class WorldSocket : protected WorldHandler
|
|||
/// Remove reference to this object.
|
||||
long RemoveReference (void);
|
||||
|
||||
/// Return the session key
|
||||
BigNumber& GetSessionKey() { return m_s; }
|
||||
|
||||
protected:
|
||||
/// things called by ACE framework.
|
||||
WorldSocket (void);
|
||||
|
|
@ -212,6 +216,8 @@ class WorldSocket : protected WorldHandler
|
|||
bool m_OutActive;
|
||||
|
||||
uint32 m_Seed;
|
||||
|
||||
BigNumber m_s;
|
||||
};
|
||||
|
||||
#endif /* _WORLDSOCKET_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue