Import bind 9.5.2 vendor sources.
[dragonfly.git] / contrib / bind-9.5.2 / lib / dns / include / dns / ncache.h
blobdb55ed68a535bdf05aa7b9988a350698e495210f
1 /*
2 * Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (C) 1999-2002 Internet Software Consortium.
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15 * PERFORMANCE OF THIS SOFTWARE.
18 /* $Id: ncache.h,v 1.23 2007/06/19 23:47:17 tbox Exp $ */
20 #ifndef DNS_NCACHE_H
21 #define DNS_NCACHE_H 1
23 /*****
24 ***** Module Info
25 *****/
27 /*! \file dns/ncache.h
28 *\brief
29 * DNS Ncache
31 * XXX TBS XXX
33 * MP:
34 *\li The caller must ensure any required synchronization.
36 * Reliability:
37 *\li No anticipated impact.
39 * Resources:
40 *\li TBS
42 * Security:
43 *\li No anticipated impact.
45 * Standards:
46 *\li RFC2308
49 #include <isc/lang.h>
50 #include <isc/stdtime.h>
52 #include <dns/types.h>
54 ISC_LANG_BEGINDECLS
56 /*%
57 * _OMITDNSSEC:
58 * Omit DNSSEC records when rendering.
60 #define DNS_NCACHETOWIRE_OMITDNSSEC 0x0001
62 isc_result_t
63 dns_ncache_add(dns_message_t *message, dns_db_t *cache, dns_dbnode_t *node,
64 dns_rdatatype_t covers, isc_stdtime_t now, dns_ttl_t maxttl,
65 dns_rdataset_t *addedrdataset);
66 /*%<
67 * Convert the authority data from 'message' into a negative cache
68 * rdataset, and store it in 'cache' at 'node' with a TTL limited to
69 * 'maxttl'.
71 * The 'covers' argument is the RR type whose nonexistence we are caching,
72 * or dns_rdatatype_any when caching a NXDOMAIN response.
74 * Note:
75 *\li If 'addedrdataset' is not NULL, then it will be attached to the added
76 * rdataset. See dns_db_addrdataset() for more details.
78 * Requires:
79 *\li 'message' is a valid message with a properly formatting negative cache
80 * authority section.
82 *\li The requirements of dns_db_addrdataset() apply to 'cache', 'node',
83 * 'now', and 'addedrdataset'.
85 * Returns:
86 *\li #ISC_R_SUCCESS
87 *\li #ISC_R_NOSPACE
89 *\li Any result code of dns_db_addrdataset() is a possible result code
90 * of dns_ncache_add().
93 isc_result_t
94 dns_ncache_towire(dns_rdataset_t *rdataset, dns_compress_t *cctx,
95 isc_buffer_t *target, unsigned int options,
96 unsigned int *countp);
97 /*%<
98 * Convert the negative caching rdataset 'rdataset' to wire format,
99 * compressing names as specified in 'cctx', and storing the result in
100 * 'target'. If 'omit_dnssec' is set, DNSSEC records will not
101 * be added to 'target'.
103 * Notes:
104 *\li The number of RRs added to target will be added to *countp.
106 * Requires:
107 *\li 'rdataset' is a valid negative caching rdataset.
109 *\li 'rdataset' is not empty.
111 *\li 'countp' is a valid pointer.
113 * Ensures:
114 *\li On a return of ISC_R_SUCCESS, 'target' contains a wire format
115 * for the data contained in 'rdataset'. Any error return leaves
116 * the buffer unchanged.
118 *\li *countp has been incremented by the number of RRs added to
119 * target.
121 * Returns:
122 *\li #ISC_R_SUCCESS - all ok
123 *\li #ISC_R_NOSPACE - 'target' doesn't have enough room
125 *\li Any error returned by dns_rdata_towire(), dns_rdataset_next(),
126 * dns_name_towire().
129 isc_result_t
130 dns_ncache_getrdataset(dns_rdataset_t *ncacherdataset, dns_name_t *name,
131 dns_rdatatype_t type, dns_rdataset_t *rdataset);
132 /*%<
133 * Search the negative caching rdataset for an rdataset with the
134 * specified name and type.
136 * Requires:
137 *\li 'ncacherdataset' is a valid negative caching rdataset.
139 *\li 'ncacherdataset' is not empty.
141 *\li 'name' is a valid name.
143 *\li 'type' is not SIG, or a meta-RR type.
145 *\li 'rdataset' is a valid disassociated rdataset.
147 * Ensures:
148 *\li On a return of ISC_R_SUCCESS, 'rdataset' is bound to the found
149 * rdataset.
151 * Returns:
152 *\li #ISC_R_SUCCESS - the rdataset was found.
153 *\li #ISC_R_NOTFOUND - the rdataset was not found.
157 ISC_LANG_ENDDECLS
159 #endif /* DNS_NCACHE_H */