blob: 5c1eb00cdbf970ffb1b080f37d5e308a340b8b02 (
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
|
#include "Swiften/StreamStack/WhitespacePingLayer.h"
#include <boost/bind.hpp>
#include "Swiften/Network/TimerFactory.h"
#include "Swiften/Network/Timer.h"
namespace Swift {
static const int TIMEOUT_MILLISECONDS = 60000;
WhitespacePingLayer::WhitespacePingLayer(TimerFactory* timerFactory) : isActive(false) {
timer = timerFactory->createTimer(TIMEOUT_MILLISECONDS);
timer->onTick.connect(boost::bind(&WhitespacePingLayer::handleTimerTick, this));
}
void WhitespacePingLayer::writeData(const ByteArray& data) {
onWriteData(data);
}
void WhitespacePingLayer::handleDataRead(const ByteArray& data) {
onDataRead(data);
}
void WhitespacePingLayer::handleTimerTick() {
onWriteData(" ");
}
void WhitespacePingLayer::setActive() {
isActive = true;
timer->start();
}
void WhitespacePingLayer::setInactive() {
timer->stop();
isActive = false;
}
}
|