Author: gschneider Date: Tue Jul 28 03:25:09 2009 New Revision: 42262
URL: http://svn.reactos.org/svn/reactos?rev=42262&view=rev Log: RosDbg: Signal if a client connected in pipe client mode, this mode works with QEMU now
Modified: trunk/tools/reactosdbg/Pipe/namedpipe.cs trunk/tools/reactosdbg/RosDBG/Properties/AssemblyInfo.cs
Modified: trunk/tools/reactosdbg/Pipe/namedpipe.cs URL: http://svn.reactos.org/svn/reactos/trunk/tools/reactosdbg/Pipe/namedpipe.cs?... ============================================================================== --- trunk/tools/reactosdbg/Pipe/namedpipe.cs [iso-8859-1] (original) +++ trunk/tools/reactosdbg/Pipe/namedpipe.cs [iso-8859-1] Tue Jul 28 03:25:09 2009 @@ -54,7 +54,6 @@ { ioStream = sStream; bClientConn = true; - if (ClientConnectedEvent != null) { ClientConnectedEvent(this, EventArgs.Empty); @@ -89,6 +88,11 @@ if (cStream.IsConnected) { ioStream = cStream; + bClientConn = true; + if (ClientConnectedEvent != null) + { + ClientConnectedEvent(this, EventArgs.Empty); + } return true; } else @@ -120,13 +124,11 @@
case ConnectionMode.MODE_CLIENT: CreateClientPipe(name); - - /* pipe open, everything fine */ return true;
case ConnectionMode.MODE_SERVER: CreateServerPipe(name); - return true; + return true; } return false; }
Modified: trunk/tools/reactosdbg/RosDBG/Properties/AssemblyInfo.cs URL: http://svn.reactos.org/svn/reactos/trunk/tools/reactosdbg/RosDBG/Properties/... ============================================================================== --- trunk/tools/reactosdbg/RosDBG/Properties/AssemblyInfo.cs [iso-8859-1] (original) +++ trunk/tools/reactosdbg/RosDBG/Properties/AssemblyInfo.cs [iso-8859-1] Tue Jul 28 03:25:09 2009 @@ -39,5 +39,5 @@ // will be increased as well. MSI installers must not be generated with the same Build Number // otherwise they won't upgrade the old installation!
-[assembly: AssemblyVersion("1.0.2.65")] -[assembly: AssemblyFileVersion("1.0.2.65")] +[assembly: AssemblyVersion("1.0.2.66")] +[assembly: AssemblyFileVersion("1.0.2.66")]