diff options
author | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-05-19 08:03:29 (GMT) |
---|---|---|
committer | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-05-19 08:03:29 (GMT) |
commit | 073c403cf3453818563c3a0e69e29fb403d22c22 (patch) | |
tree | 21a09da21bdaaf64bdd66b05bba43508c3023096 /src/network/socket | |
parent | c120d4ef6082a9e23e88ca069c72ac597719349f (diff) | |
download | Qt-073c403cf3453818563c3a0e69e29fb403d22c22.zip Qt-073c403cf3453818563c3a0e69e29fb403d22c22.tar.gz Qt-073c403cf3453818563c3a0e69e29fb403d22c22.tar.bz2 |
This lines are not needed as we monitor events in exception fd_set
and map them to read / write notifications.
Diffstat (limited to 'src/network/socket')
-rw-r--r-- | src/network/socket/qabstractsocket.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/network/socket/qabstractsocket.cpp b/src/network/socket/qabstractsocket.cpp index 8ae247c..67e32fe 100644 --- a/src/network/socket/qabstractsocket.cpp +++ b/src/network/socket/qabstractsocket.cpp @@ -991,7 +991,6 @@ void QAbstractSocketPrivate::_q_connectToNextAddress() // Wait for a write notification that will eventually call // _q_testConnection(). socketEngine->setWriteNotificationEnabled(true); - socketEngine->setExceptionNotificationEnabled(true); break; } while (state != QAbstractSocket::ConnectedState); } @@ -1052,7 +1051,6 @@ void QAbstractSocketPrivate::_q_abortConnectionAttempt() #endif if (socketEngine) { socketEngine->setWriteNotificationEnabled(false); - socketEngine->setExceptionNotificationEnabled(false); } connectTimer->stop(); |