2011-10-03 14:41:19 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cPacket.h"
|
2012-01-27 09:04:28 -05:00
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
|
|
|
|
class cPacket_KeepAlive : public cPacket
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cPacket_KeepAlive() { m_PacketID = E_KEEP_ALIVE; }
|
2011-12-27 13:39:06 -05:00
|
|
|
cPacket_KeepAlive(int a_PingID) { m_KeepAliveID = a_PingID; }
|
2011-10-03 14:41:19 -04:00
|
|
|
virtual cPacket* Clone() const { return new cPacket_KeepAlive(*this); }
|
|
|
|
|
|
|
|
virtual bool Parse(cSocket & a_Socket);
|
|
|
|
virtual bool Send(cSocket & a_Socket);
|
|
|
|
|
|
|
|
int m_KeepAliveID;
|
|
|
|
|
|
|
|
static const unsigned int c_Size = 1 + 4;
|
|
|
|
};
|