From: Dirk Koopman Date: Wed, 24 Jul 2013 08:11:30 +0000 (+0100) Subject: Alter default addr in client.c to "127.0.0.1" X-Git-Tag: 1.57~16 X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=0417a5b16318d228a6c18d96db4ff1a35223f920 Alter default addr in client.c to "127.0.0.1" This now matches the default in DXVars.pm. --- diff --git a/Changes b/Changes index b49607e2..81f2f0ca 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +24Jul13======================================================================= +1. Alter default node address in client.c from "localhost" to "127.0.0.1". 21Jul13======================================================================= 1. Fix Msg.pm to allow IPV6 addresses again (how did it ever work?). 2. Add latest CTY2307 prefix changes. diff --git a/src/client.c b/src/client.c index 5ff34010..b38aecf3 100644 --- a/src/client.c +++ b/src/client.c @@ -79,7 +79,7 @@ typedef struct } myregex_t; -char *node_addr = "localhost"; /* the node tcp address, can be overridden by DXSPIDER_HOST */ +char *node_addr = "127.0.0.1"; /* the node tcp address, can be overridden by DXSPIDER_HOST */ int node_port = 27754; /* the tcp port of the node at the above address can be overidden by DXSPIDER_PORT*/ char *call; /* the caller's callsign */ char *connsort; /* the type of connection */