Alter default addr in client.c to "127.0.0.1"
authorDirk Koopman <djk@tobit.co.uk>
Wed, 24 Jul 2013 08:11:30 +0000 (09:11 +0100)
committerDirk Koopman <djk@tobit.co.uk>
Wed, 24 Jul 2013 08:11:30 +0000 (09:11 +0100)
This now matches the default in DXVars.pm.

Changes
src/client.c

diff --git a/Changes b/Changes
index b49607e298e236f0eb29062a8956f45f269bc329..81f2f0ca74511b8e4ec0b92931934b044d24ae99 100644 (file)
--- 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.
index 5ff3401097726493f6a0c7b0533a0698139e336e..b38aecf33b6db4924b170a41e35c0465969f8444 100644 (file)
@@ -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 */