2000-08-21 22:17:14 +00:00
|
|
|
/*
|
2004-03-05 05:14:21 +00:00
|
|
|
* Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
|
2001-01-09 22:01:04 +00:00
|
|
|
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
2000-08-21 22:17:14 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
2004-03-05 05:14:21 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
2000-08-21 22:17:14 +00:00
|
|
|
*/
|
|
|
|
|
2004-03-05 05:14:21 +00:00
|
|
|
/* $Id: rdatalist_p.h,v 1.5 2004/03/05 05:09:23 marka Exp $ */
|
2000-08-21 22:17:14 +00:00
|
|
|
|
|
|
|
#ifndef DNS_RDATALIST_P_H
|
|
|
|
#define DNS_RDATALIST_P_H
|
|
|
|
|
|
|
|
#include <isc/result.h>
|
|
|
|
#include <dns/types.h>
|
|
|
|
|
|
|
|
ISC_LANG_BEGINDECLS
|
|
|
|
|
|
|
|
void
|
|
|
|
isc__rdatalist_disassociate(dns_rdataset_t *rdatasetp);
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc__rdatalist_first(dns_rdataset_t *rdataset);
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc__rdatalist_next(dns_rdataset_t *rdataset);
|
|
|
|
|
|
|
|
void
|
|
|
|
isc__rdatalist_current(dns_rdataset_t *rdataset, dns_rdata_t *rdata);
|
|
|
|
|
|
|
|
void
|
|
|
|
isc__rdatalist_clone(dns_rdataset_t *source, dns_rdataset_t *target);
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
isc__rdatalist_count(dns_rdataset_t *rdataset);
|
|
|
|
|
2004-01-14 02:06:51 +00:00
|
|
|
isc_result_t
|
|
|
|
isc__rdatalist_addnoqname(dns_rdataset_t *rdataset, dns_name_t *name);
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc__rdatalist_getnoqname(dns_rdataset_t *rdataset, dns_name_t *name,
|
|
|
|
dns_rdataset_t *nsec, dns_rdataset_t *nsecsig);
|
|
|
|
|
2000-08-21 22:17:14 +00:00
|
|
|
ISC_LANG_ENDDECLS
|
|
|
|
|
|
|
|
#endif /* DNS_RDATALIST_P_H */
|