427e582d5f
git-svn-id: http://mc-server.googlecode.com/svn/trunk@761 0a769ca7-a7f5-676a-18bf-c427514a06d6
26 lines
422 B
C++
26 lines
422 B
C++
|
|
#pragma once
|
|
|
|
#include "cPacket.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cPacket_KeepAlive : public cPacket
|
|
{
|
|
public:
|
|
cPacket_KeepAlive() { m_PacketID = E_KEEP_ALIVE; }
|
|
cPacket_KeepAlive(int a_PingID) { m_KeepAliveID = a_PingID; }
|
|
virtual cPacket * Clone() const { return new cPacket_KeepAlive(*this); }
|
|
|
|
virtual int Parse(cByteBuffer & a_Buffer) override;
|
|
virtual void Serialize(AString & a_Data) const override;
|
|
|
|
int m_KeepAliveID;
|
|
};
|
|
|
|
|
|
|
|
|