static void* start_poof_callback(AvahiCache *c, AvahiKey *pattern, AvahiCacheEntry *e, void *userdata) {
AvahiAddress *a = userdata;
+ struct timeval now;
assert(c);
assert(pattern);
assert(e);
assert(a);
-
+
+ gettimeofday(&now, NULL);
+
switch (e->state) {
case AVAHI_CACHE_VALID:
e->state = AVAHI_CACHE_POOF;
e->poof_address = *a;
-
+ e->poof_timestamp = now;
+ e->poof_num = 0;
+
break;
case AVAHI_CACHE_POOF:
+ if (avahi_timeval_diff(&now, &e->poof_timestamp) < 1000000)
+ break;
- /* This is the second time we got no response, so let's
+ e->poof_timestamp = now;
+ e->poof_address = *a;
+ e->poof_num ++;
+
+ /* This is the 4th time we got no response, so let's
* fucking remove this entry. */
-
- expire_in_one_second(c, e, AVAHI_CACHE_POOF_FINAL);
+ if (e->poof_num > 3)
+ expire_in_one_second(c, e, AVAHI_CACHE_POOF_FINAL);
break;
default:
if (!legacy_unicast && !from_local_iface) {
reflect_query(s, i, key);
- avahi_cache_start_poof(i->cache, key, a);
+ if (!unicast_response)
+ avahi_cache_start_poof(i->cache, key, a);
}
if (avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ANCOUNT) == 0 &&