blob: fee979109f42829f481a402dfeaf3fd089075a6a (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#include "stdafx.h"
#include <iostream>
#include "InputOutputStream.h"
#include "PacketListener.h"
#include "KeepAlivePacket.h"
KeepAlivePacket::KeepAlivePacket()
{
id = 0;
}
KeepAlivePacket::KeepAlivePacket(int id)
{
this->id = id;
}
void KeepAlivePacket::handle(PacketListener *listener)
{
listener->handleKeepAlive(shared_from_this());
}
void KeepAlivePacket::read(DataInputStream *dis) //throws IOException
{
id = dis->readInt();
}
void KeepAlivePacket::write(DataOutputStream *dos) //throws IOException
{
dos->writeInt(id);
}
int KeepAlivePacket::getEstimatedSize()
{
return 4;
}
bool KeepAlivePacket::canBeInvalidated()
{
return true;
}
bool KeepAlivePacket::isInvalidatedBy(shared_ptr<Packet> packet)
{
return true;
}
bool KeepAlivePacket::isAync()
{
return true;
}
|