Skip to content
Snippets Groups Projects
Commit 4dc79e20 authored by jpbl's avatar jpbl
Browse files

*** empty log message ***

parent de57d8af
Branches
Tags
No related merge requests found
...@@ -83,6 +83,7 @@ TCPSessionIO::sendWaitingRequests() ...@@ -83,6 +83,7 @@ TCPSessionIO::sendWaitingRequests()
mStack.size() > 0) { mStack.size() > 0) {
stream << *mStack.begin(); stream << *mStack.begin();
mStack.pop_front(); mStack.pop_front();
mSocket->flush();
} }
} }
...@@ -94,6 +95,7 @@ TCPSessionIO::send(const QString &request) ...@@ -94,6 +95,7 @@ TCPSessionIO::send(const QString &request)
DebugOutput::instance() << QObject::tr("TCPSessioIO: Sending request to sflphone: %1") DebugOutput::instance() << QObject::tr("TCPSessioIO: Sending request to sflphone: %1")
.arg(request); .arg(request);
stream << request; stream << request;
mSocket->flush();
} }
else { else {
mStackMutex.lock(); mStackMutex.lock();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment