Switch over target on which server is open for

This commit is contained in:
Anthony van der Hoorn 2015-08-20 13:40:07 -07:00 committed by Chris R
parent 02fefd8b31
commit a984ea77a8
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ namespace TestServer
private static async Task RunEchoServer()
{
HttpListener listener = new HttpListener();
listener.Prefixes.Add("http://*:12345/");
listener.Prefixes.Add("http://localhost:12345/");
listener.Start();
Console.WriteLine("Started");