Lines Matching refs:tab
155 struct regress_dns_server_table *tab = data;
164 while (tab->q && evutil_ascii_strcasecmp(question, tab->q) &&
165 strcmp("*", tab->q))
166 ++tab;
167 if (tab->q == NULL)
170 ++tab->seen;
172 if (tab->lower)
175 if (!strcmp(tab->anstype, "err")) {
176 int err = atoi(tab->ans);
179 } else if (!strcmp(tab->anstype, "errsoa")) {
180 int err = atoi(tab->ans);
196 } else if (!strcmp(tab->anstype, "A")) {
198 if (!evutil_inet_pton(AF_INET, tab->ans, &in)) {
199 TT_DIE(("Bad A value %s in table", tab->ans));
203 } else if (!strcmp(tab->anstype, "AAAA")) {
205 if (!evutil_inet_pton(AF_INET6, tab->ans, &in6)) {
206 TT_DIE(("Bad AAAA value %s in table", tab->ans));
211 TT_DIE(("Weird table entry with type '%s'", tab->anstype));