X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fmdnsd.git;a=blobdiff_plain;f=announce.c;h=3c8ea1623f53c9e7c7c137ead855cde6e7e1c8a2;hp=10389b8c662e3ac07deeaf7d5f66509084fb64d1;hb=HEAD;hpb=6d1e112ec8f6dd6c1f594b028e2d0e0052d9d12f diff --git a/announce.c b/announce.c index 10389b8..3c8ea16 100644 --- a/announce.c +++ b/announce.c @@ -46,7 +46,7 @@ announce_timer(struct uloop_timeout *timeout) case STATE_PROBE1: case STATE_PROBE2: case STATE_PROBE3: - dns_send_question(iface, mdns_hostname_local, TYPE_ANY, 0); + dns_send_question(iface, NULL, mdns_hostname_local, TYPE_ANY, 1); uloop_timeout_set(timeout, 250); iface->announce_state++; break; @@ -62,9 +62,11 @@ announce_timer(struct uloop_timeout *timeout) return; } iface->announce_state++; + /* Fall through */ case STATE_ANNOUNCE: - service_announce(iface); + dns_reply_a(iface, NULL, announce_ttl); + service_announce_services(iface, NULL, announce_ttl); uloop_timeout_set(timeout, announce_ttl * 800); break; }