[rrd-developers] [PATCH] rrd_client, rrd_daemon: Do not require hostnames to contain a dot.
Sebastian Harl
sh at tokkee.org
Sun Oct 4 00:30:16 CEST 2009
Non-FQDN (e.g. "localhost") are now supported as well. Anything that does not
start with '[' should be (and is now) treated as <name>[:<port>].
---
program/src/rrd_client.c | 4 ++--
program/src/rrd_daemon.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/program/src/rrd_client.c b/program/src/rrd_client.c
index 91d3547..23774f7 100644
--- a/program/src/rrd_client.c
+++ b/program/src/rrd_client.c
@@ -436,8 +436,8 @@ static int rrdc_connect_network (const char *addr_orig) /* {{{ */
rrd_set_error("garbage after address: %s", port);
return (-1);
}
- } /* if (*addr = ']') */
- else if (strchr (addr, '.') != NULL) /* Hostname or IPv4 */
+ } /* if (*addr == '[') */
+ else
{
port = rindex(addr, ':');
if (port != NULL)
diff --git a/program/src/rrd_daemon.c b/program/src/rrd_daemon.c
index 81c58e1..0ca1818 100644
--- a/program/src/rrd_daemon.c
+++ b/program/src/rrd_daemon.c
@@ -2390,8 +2390,8 @@ static int open_listen_socket_network(const listen_socket_t *sock) /* {{{ */
fprintf (stderr, "rrdcached: Garbage after address: %s\n", port);
return (-1);
}
- } /* if (*addr = ']') */
- else if (strchr (addr, '.') != NULL) /* Hostname or IPv4 */
+ } /* if (*addr == '[') */
+ else
{
port = rindex(addr, ':');
if (port != NULL)
--
1.6.5.rc2
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: Digital signature
Url : http://lists.oetiker.ch/pipermail/rrd-developers/attachments/20091004/c0a84172/attachment.pgp
More information about the rrd-developers
mailing list