X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fmdnsd.git;a=blobdiff_plain;f=cache.c;h=123925afde4c80831600425004f258066807d483;hp=403ddb8eb096100c37d9697ca54614d200ec3228;hb=431db651f04d18d2ee454e49d14806f08283f28c;hpb=f02862350ac609517e19da3916a17f5d6c81698b diff --git a/cache.c b/cache.c index 403ddb8..123925a 100644 --- a/cache.c +++ b/cache.c @@ -39,6 +39,7 @@ #include "cache.h" #include "util.h" #include "dns.h" +#include "interface.h" static struct uloop_timeout cache_gc; struct avl_tree records, entries, hosts; @@ -118,11 +119,11 @@ cache_scan(void) struct cache_entry *s; avl_for_each_element(&entries, s, avl) - dns_send_question(&listener, s->entry, TYPE_PTR); + dns_send_question(cur_iface, s->entry, TYPE_PTR); } static struct cache_entry* -cache_entry(struct uloop_fd *u, char *entry, int hlen, int ttl) +cache_entry(struct interface *iface, char *entry, int hlen, int ttl) { struct cache_entry *s; char *entry_buf; @@ -152,7 +153,7 @@ cache_entry(struct uloop_fd *u, char *entry, int hlen, int ttl) avl_insert(&entries, &s->avl); if (!hlen) - dns_send_question(u, entry, TYPE_PTR); + dns_send_question(iface, entry, TYPE_PTR); return s; } @@ -214,7 +215,7 @@ cache_host_is_known(char *record) } void -cache_answer(struct uloop_fd *u, uint8_t *base, int blen, char *name, struct dns_answer *a, uint8_t *rdata) +cache_answer(struct interface *iface, uint8_t *base, int blen, char *name, struct dns_answer *a, uint8_t *rdata) { struct dns_srv_data *dsd = (struct dns_srv_data *) rdata; struct cache_record *r; @@ -247,7 +248,7 @@ cache_answer(struct uloop_fd *u, uint8_t *base, int blen, char *name, struct dns nlen + 1 < rdlength && !strcmp(rdata_buffer + rdlength - nlen, name)) host_len = rdlength - nlen - 1; - cache_entry(u, rdata_buffer, host_len, a->ttl); + cache_entry(iface, rdata_buffer, host_len, a->ttl); return; case TYPE_SRV: @@ -277,14 +278,14 @@ cache_answer(struct uloop_fd *u, uint8_t *base, int blen, char *name, struct dns break; case TYPE_A: - cache_entry(u, name, strlen(name), a->ttl); + cache_entry(iface, name, strlen(name), a->ttl); if (a->rdlength != 4) return; dlen = 4; break; case TYPE_AAAA: - cache_entry(u, name, strlen(name), a->ttl); + cache_entry(iface, name, strlen(name), a->ttl); if (a->rdlength != 16) return; dlen = 16;