From 2bb9a14110d909af1894426d456237bfc0b60ad4 Mon Sep 17 00:00:00 2001 From: Javier Date: Tue, 15 Dec 2015 02:42:46 +0100 Subject: implement the WebProxy agent --- sapsocket.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'sapsocket.cc') diff --git a/sapsocket.cc b/sapsocket.cc index b41e8f5..e7376d9 100644 --- a/sapsocket.cc +++ b/sapsocket.cc @@ -88,8 +88,6 @@ void SAPSocket::acceptIncomingData(const QByteArray &data) } else { _inLastSeqNum = frame.seqNum; - qDebug() << "Realiable received" << _inLastSeqNum; - if (!_timer.isActive()) { _timer.start(DELAYED_ACK_TIME, Qt::CoarseTimer, this); } @@ -110,7 +108,6 @@ void SAPSocket::timerEvent(QTimerEvent *event) { if (event->timerId() == _timer.timerId()) { if (_inLastSeqNum != _inLastAck) { - qDebug() << "Acking" << _inLastAck << _inLastSeqNum; peer()->writeAckToSession(_sessionId, _inLastSeqNum); _inLastAck = _inLastSeqNum; } -- cgit v1.2.3