From d17a891dd53e9e80fecea83b60edb657b832ce74 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 17 Oct 2011 15:51:23 +0200 Subject: [PATCH] invite: remove port variable --- SparkleShare/SparkleInvite.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/SparkleInvite.cs b/SparkleShare/SparkleInvite.cs index a2462e2a..1b94f9b4 100644 --- a/SparkleShare/SparkleInvite.cs +++ b/SparkleShare/SparkleInvite.cs @@ -61,7 +61,7 @@ namespace SparkleShare { public SparkleInviteListener (int port) { - this.tcp_listener = new TcpListener (IPAddress.Any, port); + this.tcp_listener = new TcpListener (IPAddress.Loopback, port); this.thread = new Thread(new ThreadStart (Listen)); }