Socket.st
changeset 5442 c3fa7c4f818f
parent 5441 bdf6b4e8c68b
child 5443 3eac683cfb1d
--- a/Socket.st	Wed Feb 05 15:14:27 2020 +0100
+++ b/Socket.st	Wed Feb 05 16:09:02 2020 +0100
@@ -4379,7 +4379,7 @@
 
 nonBlockingNextPutAll:someBytes
     "should be replaced in the calles by #nextPutAll:
-     but currently #nextPutAll is broken / unstable
+     but currently #nextPutAll: handles WSAEWOULDBLOCK / EWOULDBLOCK  incorrect (at least for windows)
      only called by WebSocketStream #criticalSocketNextPutAll:"
 
     |bytes countRemainingBytesToWrite result|
@@ -4406,12 +4406,12 @@
     ].
 
     "Created: / 30-01-2020 / 16:35:08 / Stefan Reise"
-    "Modified (comment): / 05-02-2020 / 15:13:39 / Stefan Reise"
+    "Modified (comment): / 05-02-2020 / 16:08:47 / Stefan Reise"
 !
 
 primNonBlockingNextPutAll:someBytes
     "should be replaced in the calles by #nextPutAll:
-     but currently #nextPutAll is broken / unstable
+     but currently #nextPutAll: handles WSAEWOULDBLOCK / EWOULDBLOCK incorrect (at least for windows)
      only called by WebSocketStream #criticalSocketNextPutAll:"
 
     |bytes byteLength returnValue|
@@ -4457,7 +4457,7 @@
 
     "Created: / 30-01-2020 / 16:36:01 / Stefan Reise"
     "Modified: / 31-01-2020 / 11:53:01 / Stefan Reise"
-    "Modified (comment): / 05-02-2020 / 15:12:49 / Stefan Reise"
+    "Modified (comment): / 05-02-2020 / 16:08:50 / Stefan Reise"
 ! !
 
 !Socket methodsFor:'waiting'!