From 1e31adcf58d766da030b08686f78735d47eee092 Mon Sep 17 00:00:00 2001 From: cperkonig Date: Tue, 5 Oct 2004 12:19:24 +0000 Subject: [PATCH] quickfix for bind-error --- .../phpdt/internal/debug/core/PHPDBGProxy.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java index d336d7e..47262d7 100644 --- a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java +++ b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/PHPDBGProxy.java @@ -92,8 +92,8 @@ public class PHPDBGProxy { } protected void createServerSocket() { - // port = SocketUtil.findUnusedLocalPort("localhost", 10001, 10101); - port = 10001; + port = SocketUtil.findUnusedLocalPort("localhost", 10001, 10101); +// port = 10001; if (port == -1) { PHPDebugCorePlugin.log(5, "Cannot find free port!!!!"); return; -- 1.7.1