You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTTPFileServer is not as Qt friendly as we want it to be: it uses a loop that blocks signal processing and makes big files cause a crash on Windows.
What is not a solution: flush(), waitForBytesWritten(), QCoreApplication::processEvents() Solution: signals and slots, as most of QTcpSockets' functionality is implemented as those.
HTTPFileServer is not as Qt friendly as we want it to be: it uses a loop that blocks signal processing and makes big files cause a crash on Windows.
What is not a solution: flush(), waitForBytesWritten(), QCoreApplication::processEvents()
Solution: signals and slots, as most of QTcpSockets' functionality is implemented as those.
See http://doc.qt.io/qt-5/qabstractsocket.html#flush and http://doc.qt.io/qt-5/qabstractsocket.html#waitForBytesWritten for reference.
The text was updated successfully, but these errors were encountered: