Skip to content
Snippets Groups Projects
Commit 78c6b42b authored by yanmorin's avatar yanmorin
Browse files

Sending last message before closing socket
parent 1d8be440
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,14 @@
#include "tcpstreampool.h"
#include "../../global.h"
TCPStreamPool::~TCPStreamPool()
{
terminate();
std::string output;
while (good() && _outputPool.pop(output, 2LU)) {
*this << output << std::endl;
}
}
void
TCPStreamPool::run() {
std::string output;
......@@ -46,7 +54,9 @@ TCPStreamPool::run() {
void
TCPStreamPool::send(const std::string& response)
{
_outputPool.push(response);
if (!testCancel()) {
_outputPool.push(response);
}
}
bool
......
......@@ -43,7 +43,7 @@ public:
{
setCancel(cancelDeferred);
}
TCPStreamPool::~TCPStreamPool() {terminate();}
TCPStreamPool::~TCPStreamPool();
void run();
void send(const std::string& response);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment