From 8cf0e9e31837c813fb05b90acfcec828e6309d76 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 21 Aug 2006 20:53:24 +0000 Subject: follow Bonjour's hostname number incrementing algorithm for handling conflicts. On collision the name "foobar" will now become "foobar-2" and not "foobar2". (closes #40) git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1250 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- avahi-common/alternative.c | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) (limited to 'avahi-common/alternative.c') diff --git a/avahi-common/alternative.c b/avahi-common/alternative.c index 436a0d4..77470ba 100644 --- a/avahi-common/alternative.c +++ b/avahi-common/alternative.c @@ -32,20 +32,31 @@ #include "malloc.h" char * avahi_alternative_host_name(const char *s) { - const char *p, *e; + const char *e; char *r; assert(s); - e = s; - - for (p = s; *p; p++) - if (!isdigit(*p)) - e = p+1; + e = strrchr(s, '-'); + + if (e) { + const char *p; + + for (p = e+1; *p; p++) + if (!isdigit(*p)) { + e = NULL; + break; + } + + if (e && (*(e+1) == '0' || (*(e+1) == 0))) + e = NULL; + } - if (*e) { + if (e) { char *c; + e++; + if (!(c = avahi_strndup(s, e-s))) return NULL; @@ -53,7 +64,7 @@ char * avahi_alternative_host_name(const char *s) { avahi_free(c); } else - r = avahi_strdup_printf("%s2", s); + r = avahi_strdup_printf("%s-2", s); return r; } @@ -76,6 +87,9 @@ char *avahi_alternative_service_name(const char *s) { e = NULL; break; } + + if (e && (*e == '0' || *e == 0)) + e = NULL; } if (e) { -- cgit