use safer port numbers

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39461 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2016-03-05 16:13:44 +00:00
parent 86e8a7b27d
commit 6468dcfd1a
15 changed files with 141 additions and 138 deletions

View file

@ -583,15 +583,15 @@ didReceiveResponse:(NSURLResponse *)response
}
if (nil == address)
{
address = @"localhost";
address = @"127.0.0.1";
}
if (nil == port)
{
port = @"54321";
port = @"1234";
}
if (nil == auxPort)
{
auxPort = @"54322";
auxPort = @"1235";
}
if (nil == path)
{