summaryrefslogtreecommitdiffstats
path: root/avahi-core/cache.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-05-20 21:35:40 +0000
committerLennart Poettering <lennart@poettering.net>2005-05-20 21:35:40 +0000
commit26358a4c4a8ae0ca68f08054e367aa3687681445 (patch)
tree790e13824acaeb9598460afb371c8791726fcb91 /avahi-core/cache.c
parent4de3df3db7df43474176533d0b5fac851dd4a9b4 (diff)
* add new server state AVAHI_SERVER_SLEEPING to avoid conflicts by own responses
* Honour TC bit in incoming packets by responding immediately to packets * publish browse domain * Fix a structure size issue in iface.c revealed by running avahi on Linux 2.4 * Don't depend on IFF_RUNNING * Require a global IP addresses to consider an interface relevant * Linux 2.4 compatiblity * fix parsing of TTL from recvmsg() git-svn-id: file:///home/lennart/svn/public/avahi/trunk@79 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-core/cache.c')
-rw-r--r--avahi-core/cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/avahi-core/cache.c b/avahi-core/cache.c
index 2f0c166..12ee0e6 100644
--- a/avahi-core/cache.c
+++ b/avahi-core/cache.c
@@ -151,7 +151,7 @@ static void elapse_func(AvahiTimeEvent *t, void *userdata) {
if (e->state == AVAHI_CACHE_FINAL) {
remove_entry(e->cache, e);
- g_message("Removing entry from cache due to expiration");
+/* g_message("Removing entry from cache due to expiration"); */
} else {
guint percent = 0;
@@ -183,7 +183,7 @@ static void elapse_func(AvahiTimeEvent *t, void *userdata) {
/* Request a cache update, if we are subscribed to this entry */
if (avahi_is_subscribed(e->cache->server, e->record->key)) {
- g_message("Requesting cache entry update at %i%%.", percent);
+/* g_message("Requesting cache entry update at %i%%.", percent); */
avahi_interface_post_query(e->cache->interface, e->record->key, TRUE);
}