Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Net.Sockets/ChangeLog')
-rw-r--r--mcs/class/System/System.Net.Sockets/ChangeLog26
1 files changed, 0 insertions, 26 deletions
diff --git a/mcs/class/System/System.Net.Sockets/ChangeLog b/mcs/class/System/System.Net.Sockets/ChangeLog
index 7da5dcdae61..3b7aeaf5da9 100644
--- a/mcs/class/System/System.Net.Sockets/ChangeLog
+++ b/mcs/class/System/System.Net.Sockets/ChangeLog
@@ -1,29 +1,3 @@
-2004-08-04 Dick Porter <dick@ximian.com>
-
- * Socket.cs: Update Connected state in Select and Poll; this is
- when we find out that non-blocking Connects succeed. Fixes bug
- 62398.
-
-2004-07-28 Dick Porter <dick@ximian.com>
-
- * Socket.cs: ReceiveFrom might not return a valid EndPoint. Patch
- by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug 61608.
-
-2004-07-15 Dick Porter <dick@ximian.com>
-
- * Socket.cs: Don't try and dereference a null array in Select()
- (possible if a descriptor list of length 0 was passed.) Patch by
- Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug 61595.
-
-2004-07-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
-
- * Socket.cs: if'ed RemoveReferences calls.
-
-2004-07-09 Dick Porter <dick@ximian.com>
-
- * Socket.cs: Slight tweak to allow unknown objects to be returned
- by GetSocketOption().
-
2004-06-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* Socket.cs: connect on non-blocking sockets returns EINPROGRESS. Fixes