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:
authorMiguel de Icaza <miguel@gnome.org>2002-09-16 23:31:26 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-09-16 23:31:26 +0400
commit2bfd7fce53e5efa74dc9c4ec75c4252281fd98c0 (patch)
tree5f0e0897e5777bbe920f12e359c96771f7eaab63 /mcs/class/System/System.Net.Sockets
parent1fb1efbead58d37ccbc48f52d473f07d9d2b6868 (diff)
2002-09-16 Miguel de Icaza <miguel@ximian.com>
* SocketFlags.cs: Add missing enumeration. * UdpClient.cs: Make Dispose private. svn path=/trunk/mcs/; revision=7523
Diffstat (limited to 'mcs/class/System/System.Net.Sockets')
-rw-r--r--mcs/class/System/System.Net.Sockets/ChangeLog6
-rw-r--r--mcs/class/System/System.Net.Sockets/SocketFlags.cs4
-rw-r--r--mcs/class/System/System.Net.Sockets/UdpClient.cs2
3 files changed, 11 insertions, 1 deletions
diff --git a/mcs/class/System/System.Net.Sockets/ChangeLog b/mcs/class/System/System.Net.Sockets/ChangeLog
index fdfae71d2ad..c542a39e996 100644
--- a/mcs/class/System/System.Net.Sockets/ChangeLog
+++ b/mcs/class/System/System.Net.Sockets/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-16 Miguel de Icaza <miguel@ximian.com>
+
+ * SocketFlags.cs: Add missing enumeration.
+
+ * UdpClient.cs: Make Dispose private.
+
2002-08-20 Dick Porter <dick@ximian.com>
* Socket.cs: Fix deadlock when the AsyncResult callback calls
diff --git a/mcs/class/System/System.Net.Sockets/SocketFlags.cs b/mcs/class/System/System.Net.Sockets/SocketFlags.cs
index 8e958d47c05..12b0906b1ee 100644
--- a/mcs/class/System/System.Net.Sockets/SocketFlags.cs
+++ b/mcs/class/System/System.Net.Sockets/SocketFlags.cs
@@ -28,6 +28,10 @@ namespace System.Net.Sockets {
/// <summary>
/// </summary>
+ MaxIOVectorLength = 0x00000010,
+
+ /// <summary>
+ /// </summary>
Peek = 0x00000002,
/// <summary>
diff --git a/mcs/class/System/System.Net.Sockets/UdpClient.cs b/mcs/class/System/System.Net.Sockets/UdpClient.cs
index 15e921abfc9..ceaf9ac9eae 100644
--- a/mcs/class/System/System.Net.Sockets/UdpClient.cs
+++ b/mcs/class/System/System.Net.Sockets/UdpClient.cs
@@ -236,7 +236,7 @@ namespace System.Net.Sockets
GC.SuppressFinalize (this);
}
- protected virtual void Dispose (bool disposing)
+ void Dispose (bool disposing)
{
if (disposed)
return;