Lines Matching refs:glue
206 * glue and is not subject to wildcard matching, so we
212 * If the caller does not want to find glue, then
925 * RRSIG NSEC. That means it's glue or
1111 * CNAMEs because they're not legitimate zone glue.
1215 * Glue is not OK, but any answer we
1216 * could return would be glue. Return
1334 * We were trying to find glue at a node beneath a
1411 * result is glue, unless we're actually at the zone cut
2106 dns_glue_t *glue = NULL;
2134 glue = dns__db_new_glue(ctx->db->mctx, name_a);
2136 dns_rdataset_init(&glue->rdataset_a);
2137 dns_rdataset_init(&glue->sigrdataset_a);
2138 dns_rdataset_init(&glue->rdataset_aaaa);
2139 dns_rdataset_init(&glue->sigrdataset_aaaa);
2141 dns_rdataset_clone(&rdataset_a, &glue->rdataset_a);
2144 &glue->sigrdataset_a);
2153 if (glue == NULL) {
2154 glue = dns__db_new_glue(ctx->db->mctx, name_aaaa);
2156 dns_rdataset_init(&glue->rdataset_a);
2157 dns_rdataset_init(&glue->sigrdataset_a);
2158 dns_rdataset_init(&glue->rdataset_aaaa);
2159 dns_rdataset_init(&glue->sigrdataset_aaaa);
2165 dns_rdataset_clone(&rdataset_aaaa, &glue->rdataset_aaaa);
2168 &glue->sigrdataset_aaaa);
2173 * If the currently processed NS record is in-bailiwick, mark any glue
2175 * simplicity, glue RRsets for all in-bailiwick NS records are marked
2183 if (glue != NULL && dns_name_issubdomain(name, nodename)) {
2184 if (dns_rdataset_isassociated(&glue->rdataset_a)) {
2185 glue->rdataset_a.attributes |=
2188 if (dns_rdataset_isassociated(&glue->rdataset_aaaa)) {
2189 glue->rdataset_aaaa.attributes |=
2194 if (glue != NULL) {
2195 glue->next = ctx->glue;
2196 ctx->glue = glue;