summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Disconnect.h
blob: 77b6cf615fcec570849aa97efaa3be4e0cb1f11d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

#pragma once

#include "cPacket.h"





class cPacket_Disconnect : public cPacket
{
public:
	cPacket_Disconnect() { m_PacketID = E_DISCONNECT;  }
	cPacket_Disconnect(const AString & a_Reason) { m_PacketID = E_DISCONNECT; m_Reason = a_Reason;  }
	virtual cPacket* Clone() const { return new cPacket_Disconnect(*this); }

	virtual int Parse(cByteBuffer & a_Buffer) override;

	AString m_Reason;
	static const unsigned int c_Size = 3; // Minimum size
};