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:
authorGert Driesen <drieseng@users.sourceforge.net>2004-06-11 09:07:35 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2004-06-11 09:07:35 +0400
commitc4ac3065d52ce4ed252cad46461e3a37b5678e1b (patch)
treeaf3bb159ba18d76cd0eef736ffae97872624797e /mcs/class/System/System.Net.Sockets
parent16f9cdccf30e5daaf603c48d5f43f0dd5a955faa (diff)
* LingerOption.cs: marked field private to fix API signature
* MulticastOption.cs: marked field private to fix API signature svn path=/trunk/mcs/; revision=29260
Diffstat (limited to 'mcs/class/System/System.Net.Sockets')
-rw-r--r--mcs/class/System/System.Net.Sockets/ChangeLog7
-rw-r--r--mcs/class/System/System.Net.Sockets/LingerOption.cs2
-rw-r--r--mcs/class/System/System.Net.Sockets/MulticastOption.cs2
3 files changed, 8 insertions, 3 deletions
diff --git a/mcs/class/System/System.Net.Sockets/ChangeLog b/mcs/class/System/System.Net.Sockets/ChangeLog
index 1f615c3c15d..4200ef0423c 100644
--- a/mcs/class/System/System.Net.Sockets/ChangeLog
+++ b/mcs/class/System/System.Net.Sockets/ChangeLog
@@ -1,9 +1,14 @@
+2004-06-10 Gert Driesen <drieseng@users.sourceforge.net>
+
+ * LingerOption.cs: marked field private to fix API signature
+ * MulticastOption.cs: marked field private to fix API signature
+
2004-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* Socket.cs: throw ArgumentNullException if all the list are null OR
empty. Fixes bug #59632.
-2004-05-21 Patrik Torstensson <totte@hiddenpeaks.com>
+2004-05-21 Patrik Torstensson <totte@hiddenpeaks.com>
* TcpListener.cs: Fixes a lot of the problems with remoting nunit tests.
diff --git a/mcs/class/System/System.Net.Sockets/LingerOption.cs b/mcs/class/System/System.Net.Sockets/LingerOption.cs
index 4c6117f5035..c9dd0617f2f 100644
--- a/mcs/class/System/System.Net.Sockets/LingerOption.cs
+++ b/mcs/class/System/System.Net.Sockets/LingerOption.cs
@@ -19,7 +19,7 @@ namespace System.Net.Sockets
// Don't change the names of these fields without also
// changing socket-io.c in the runtime
private bool enabled;
- protected int seconds;
+ private int seconds;
public LingerOption (bool enable, int secs)
{
diff --git a/mcs/class/System/System.Net.Sockets/MulticastOption.cs b/mcs/class/System/System.Net.Sockets/MulticastOption.cs
index c556894534b..3743c683c7c 100644
--- a/mcs/class/System/System.Net.Sockets/MulticastOption.cs
+++ b/mcs/class/System/System.Net.Sockets/MulticastOption.cs
@@ -20,7 +20,7 @@ namespace System.Net.Sockets
// Don't change the names of these fields without also
// changing socket-io.c in the runtime
private IPAddress group;
- protected IPAddress local;
+ private IPAddress local;
public MulticastOption (IPAddress grp)
: this (grp, IPAddress.Any)