Skip to content

Commit

Permalink
Merge pull request #64 from dannagle/development
Browse files Browse the repository at this point in the history
serious bug fix in responses
  • Loading branch information
dannagle authored Feb 21, 2017
2 parents aa9a90c + 2c796a7 commit 110beec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tcpthread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void TCPThread::writeResponse(QSslSocket *sock, Packet tcpPacket) {
tcpPacketreply.timestamp = QDateTime::currentDateTime();
tcpPacketreply.name = "Reply to " + tcpPacket.timestamp.toString(DATETIMEFORMAT);
tcpPacketreply.tcpOrUdp = "TCP";
if(clientConnection->isEncrypted()) {
if(sock->isEncrypted()) {
tcpPacketreply.tcpOrUdp = "SSL";
}
tcpPacketreply.fromIP = "You (Response)";
Expand Down

0 comments on commit 110beec

Please sign in to comment.