Workaround for Bug 3917 - CWinsockInterface::DataSent calls NotifyDataSent which is not implemented. default PDK_3.0.4
authorShabe Razvi <shaber@symbian.org>
Thu, 04 Nov 2010 17:22:05 +0000
changeset 4 b3b823debf08
parent 3 ba779db5b8c5
Workaround for Bug 3917 - CWinsockInterface::DataSent calls NotifyDataSent which is not implemented.
sdkcreationmw/sdkruntimes/wsock/src/WinsockInterface.cpp
--- a/sdkcreationmw/sdkruntimes/wsock/src/WinsockInterface.cpp	Tue Jul 20 10:09:03 2010 +0100
+++ b/sdkcreationmw/sdkruntimes/wsock/src/WinsockInterface.cpp	Thu Nov 04 17:22:05 2010 +0000
@@ -174,8 +174,11 @@
         {
             int chunks = delta/iBytesSentGranularity;
             iBytesSentMark += chunks*iBytesSentGranularity;
-            iNotify->NotifyDataSent(KWinsockSubConnectionId,
-                delta*iBytesSentGranularity);
+            //
+            // Workaround for  Bug 3917 -  CWinsockInterface::DataSent calls NotifyDataSent which is not implemented.
+            //
+            // iNotify->NotifyDataSent(KWinsockSubConnectionId,
+            //    delta*iBytesSentGranularity);
         }
     }
 }