2005-11-04 Robert Jordan <robertj@gmx.net>
authorRobert Jordan <robertj@gmx.net>
Fri, 4 Nov 2005 21:50:22 +0000 (21:50 -0000)
committerRobert Jordan <robertj@gmx.net>
Fri, 4 Nov 2005 21:50:22 +0000 (21:50 -0000)
* IpcChannelHelper.cs: Removed the colon from the invalid pipe name
chars, because it is a valid char on NT systems and some .NET IPC
channel samples contain a colon in their port names.

svn path=/trunk/mcs/; revision=52597

mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Ipc.Win32/ChangeLog
mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Ipc.Win32/IpcChannelHelper.cs

index 1c74c611571393df323cc340315c6e5509b27369..c67cddc64ed9214e26d1a2d4b5750c864f0087f1 100644 (file)
@@ -1,3 +1,9 @@
+2005-11-04  Robert Jordan  <robertj@gmx.net>
+
+       * IpcChannelHelper.cs: Removed the colon from the invalid pipe name
+       chars, because it is a valid char on NT systems and some .NET IPC
+       channel samples contain a colon in their port names.
+
 2005-10-16  Robert Jordan  <robertj@gmx.net>
 
        * Imported
index 8604aca73ae8d418feec88d0e4cc5f0fe85ce1cd..55210c6cd880af71d892d1d0a44c42cc74cf3fa8 100644 (file)
@@ -50,7 +50,7 @@ namespace System.Runtime.Remoting.Channels.Ipc.Win32
         }
 
         static readonly char[] InvalidPipeNameChars =
-            new char[] {'\\', '/', ':'};
+            new char[] {'\\', '/'};
 
         /// <summary>
         /// Validates a pipe name.