[Mono-bugs] [Bug 38361][Wis] New - System.Net.Sockets.AddressFamily has unknown value 0x1002

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Wed, 19 Feb 2003 16:40:10 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by julie@magenet.com.

http://bugzilla.ximian.com/show_bug.cgi?id=38361

--- shadow/38361	Wed Feb 19 16:40:10 2003
+++ shadow/38361.tmp.2938	Wed Feb 19 16:40:10 2003
@@ -0,0 +1,57 @@
+Bug#: 38361
+Product: Mono/Class Libraries
+Version: unspecified
+OS: Mandrake 9.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: Unknown
+Priority: Wishlist
+Component: System
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: julie@MageNet.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: System.Net.Sockets.AddressFamily has unknown value 0x1002
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem: 
+When you try to create a TcpClient connection you get the following 
+message System.Net.Sockets.AddressFamily has unknown value 0x1002.  It
+happens if you do create it via the constructor of via Connect
+
+
+
+Steps to reproduce the problem:
+This small program will show the bug.
+using System;
+using System.Net;
+using System.Net.Sockets;
+ 
+public class ConnectTest
+{
+        public ConnectTest () {
+ 
+        }
+ 
+        public static void Main(string[] args) {
+                TcpClient connect = new TcpClient();
+                connect.Connect(args[0], Int32.Parse(args[1]));
+        }
+}
+
+
+
+Actual Results:
+
+
+Expected Results:
+
+
+How often does this happen? 
+In the current CVS
+
+Additional Information: