Reopen closed file fixes binary diffs

This commit is contained in:
Alex Hultman
2018-09-23 23:52:12 +02:00
parent 8106a0f628
commit 49f503c570
5 changed files with 33 additions and 14 deletions
+2 -2
View File
@@ -100,7 +100,7 @@ public:
return;
}
std::cout << "Resume called and we really are paused" << std::endl;
//std::cout << "Resume called and we really are paused" << std::endl;
/* Remove paused status */
httpResponseData->state &= ~HttpResponseData<SSL>::HTTP_PAUSED_STREAM_OUT;
@@ -122,7 +122,7 @@ public:
// break on pause!
if (chunk.length() == 0) {
std::cout << "Resume paused!" << std::endl;
//std::cout << "Resume paused!" << std::endl;
httpResponseData->state |= HttpResponseData<SSL>::HTTP_PAUSED_STREAM_OUT;
break;
}