X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fmdnsd.git;a=blobdiff_plain;f=service.c;h=b8eb40608e3578689a9f7ef987bf5733a0a7c2c2;hp=55cd2bbe06b4943f054c01ab464b0bff795068d5;hb=df298a725d5ef2c1aa5591775b316d0afecbf713;hpb=8331f9bf12682842a1ed8cc17fda6b447793ca1c diff --git a/service.c b/service.c index 55cd2bb..b8eb406 100644 --- a/service.c +++ b/service.c @@ -12,11 +12,8 @@ */ #include -#include #include #include -#include -#include #include #include @@ -34,6 +31,7 @@ #include "dns.h" #include "service.h" #include "util.h" +#include "interface.h" enum { SERVICE_PORT, @@ -85,7 +83,7 @@ service_name(const char *domain) } static void -service_send_ptr(struct uloop_fd *u, struct service *s) +service_add_ptr(struct service *s) { unsigned char buffer[MAX_NAME_LEN]; const char *host = service_name(s->service); @@ -98,7 +96,7 @@ service_send_ptr(struct uloop_fd *u, struct service *s) } static void -service_send_ptr_c(struct uloop_fd *u, const char *host) +service_add_ptr_c(const char *host) { unsigned char buffer[MAX_NAME_LEN]; int len = dn_comp(host, buffer, MAX_NAME_LEN, NULL, NULL); @@ -110,26 +108,20 @@ service_send_ptr_c(struct uloop_fd *u, const char *host) } static void -service_send_a(struct uloop_fd *u) +service_send_a(struct interface *iface) { unsigned char buffer[MAX_NAME_LEN]; char *host = service_name("local"); int len = dn_comp(host, buffer, MAX_NAME_LEN, NULL, NULL); - struct in_addr in; - - if (!inet_aton(iface_ip, &in)) { - fprintf(stderr, "%s is not valid\n", iface_ip); - return; - } if (len < 1) return; - dns_add_answer(TYPE_A, (uint8_t *) &in.s_addr, 4); + dns_add_answer(TYPE_A, (uint8_t *) &iface->v4_addr.s_addr, 4); } static void -service_send_srv(struct uloop_fd *u, struct service *s) +service_add_srv(struct service *s) { unsigned char buffer[MAX_NAME_LEN]; struct dns_srv_data *sd; @@ -166,18 +158,18 @@ service_timeout(struct service *s) } void -service_reply_a(struct uloop_fd *u, int type) +service_reply_a(struct interface *iface, int type) { if (type != TYPE_A) return; dns_init_answer(); - service_send_a(u); - dns_send_answer(u, service_name("local")); + service_send_a(iface); + dns_send_answer(iface, service_name("local")); } void -service_reply(struct uloop_fd *u, const char *match) +service_reply(struct interface *iface, const char *match) { struct service *s; @@ -194,26 +186,26 @@ service_reply(struct uloop_fd *u, const char *match) continue; dns_init_answer(); - service_send_ptr(u, s); - dns_send_answer(u, service); + service_add_ptr(s); + dns_send_answer(iface, service); dns_init_answer(); - service_send_srv(u, s); + service_add_srv(s); if (s->txt && s->txt_len) dns_add_answer(TYPE_TXT, (uint8_t *) s->txt, s->txt_len); - dns_send_answer(u, host); + dns_send_answer(iface, host); } if (match) return; dns_init_answer(); - service_send_a(u); - dns_send_answer(u, service_name("local")); + service_send_a(iface); + dns_send_answer(iface, service_name("local")); } void -service_announce_services(struct uloop_fd *u, const char *service) +service_announce_services(struct interface *iface, const char *service) { struct service *s; int tcp = 1; @@ -230,20 +222,20 @@ service_announce_services(struct uloop_fd *u, const char *service) continue; s->t = 0; dns_init_answer(); - service_send_ptr_c(u, s->service); + service_add_ptr_c(s->service); if (tcp) - dns_send_answer(u, sdtcp); + dns_send_answer(iface, sdtcp); else - dns_send_answer(u, sdudp); - service_reply(u, s->service); + dns_send_answer(iface, sdudp); + service_reply(iface, s->service); } } void -service_announce(struct uloop_fd *u) +service_announce(struct interface *iface) { - service_announce_services(u, sdudp); - service_announce_services(u, sdtcp); + service_announce_services(iface, sdudp); + service_announce_services(iface, sdtcp); } static void