[Mono-bugs] [Bug 59320][Maj] Changed - UDP Packet contains false data
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sun, 30 May 2004 15:07:06 -0400 (EDT)
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 hawke@deltacity.org.
http://bugzilla.ximian.com/show_bug.cgi?id=59320
--- shadow/59320 2004-05-30 15:05:04.000000000 -0400
+++ shadow/59320.tmp.7167 2004-05-30 15:07:06.000000000 -0400
@@ -2,13 +2,13 @@
Product: Mono: Class Libraries
Version: unspecified
OS: Debian Woody
OS Details: Bug also appears with Windows (XP in my case)
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Major
Component: System
AssignedTo: mono-bugs@ximian.com
ReportedBy: hawke@deltacity.org
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -73,6 +73,20 @@
How often does this happen?
Always (spoken for me)
Additional Information:
I did not test this code with mcs-compiled binaries yet since I would have
to rewrite the code (will try tomorrow)... But anyway: IL should be IL, right?
+
+------- Additional Comments From hawke@deltacity.org 2004-05-30 15:07 -------
+The line:
+
+ Dim Header As String = Chr(255) & Chr(255) & Chr(255) &
+ChrW(255) & ChrW(2)
+
+has indeed to be replaced with:
+
+ Dim Header As String = Chr(255) & Chr(255) & Chr(255) &
+Chr(255) & Chr(2)
+
+
+Anyway, the bug persists.