From b8453b6fe3552cdfe32c726f87bb30d897c679b0 Mon Sep 17 00:00:00 2001 From: Martin Petersson Date: Wed, 11 Jul 2012 12:31:29 +0200 Subject: QtNetwork: Handle FD_CLOSE on Windows We need to handle FD_CLOSE separately on Windows as this will be sent only once. When we get FD_CLOSE we need to check if there is more data available for reading. It there is this might indicate that there is another FD_READ that we need to handle after the FD_CLOSE. So in this case we will manually create another close event. Task-number: QTBUG-19409 Task-number: QTBUG-25386 Change-Id: Ie19906bc3f64fb6a85a508a5ab12caac5d70ccdb Reviewed-by: Shane Kearns --- src/network/socket/qabstractsocket_p.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/network/socket/qabstractsocket_p.h') diff --git a/src/network/socket/qabstractsocket_p.h b/src/network/socket/qabstractsocket_p.h index 21d85f74fe..b19801882e 100644 --- a/src/network/socket/qabstractsocket_p.h +++ b/src/network/socket/qabstractsocket_p.h @@ -77,6 +77,7 @@ public: inline void readNotification() { canReadNotification(); } inline void writeNotification() { canWriteNotification(); } inline void exceptionNotification() {} + inline void closeNotification() { canCloseNotification(); } void connectionNotification(); #ifndef QT_NO_NETWORKPROXY inline void proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator) { @@ -87,6 +88,7 @@ public: bool canReadNotification(); bool canWriteNotification(); + void canCloseNotification(); // slots void _q_connectToNextAddress(); -- cgit v1.2.3