✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/include/bind9/dns//dbiterator.h
/*
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
 *
 * See the COPYRIGHT file distributed with this work for additional
 * information regarding copyright ownership.
 */

#ifndef DNS_DBITERATOR_H
#define DNS_DBITERATOR_H 1

/*****
***** Module Info
*****/

/*! \file dns/dbiterator.h
 * \brief
 * The DNS DB Iterator interface allows iteration of all of the nodes in a
 * database.
 *
 * The dns_dbiterator_t type is like a "virtual class".  To actually use
 * it, an implementation of the class is required.  This implementation is
 * supplied by the database.
 *
 * It is the client's responsibility to call dns_db_detachnode() on all
 * nodes returned.
 *
 * XXX <more> XXX
 *
 * MP:
 *\li	The iterator itself is not locked.  The caller must ensure
 *	synchronization.
 *
 *\li	The iterator methods ensure appropriate database locking.
 *
 * Reliability:
 *\li	No anticipated impact.
 *
 * Resources:
 *\li	TBS
 *
 * Security:
 *\li	No anticipated impact.
 *
 * Standards:
 *\li	None.
 */

/*****
***** Imports
*****/

#include <stdbool.h>

#include <isc/lang.h>
#include <isc/magic.h>

#include <dns/types.h>

ISC_LANG_BEGINDECLS

/*****
***** Types
*****/

typedef struct dns_dbiteratormethods {
	void (*destroy)(dns_dbiterator_t **iteratorp);
	isc_result_t (*first)(dns_dbiterator_t *iterator);
	isc_result_t (*last)(dns_dbiterator_t *iterator);
	isc_result_t (*seek)(dns_dbiterator_t *iterator,
			     const dns_name_t *name);
	isc_result_t (*prev)(dns_dbiterator_t *iterator);
	isc_result_t (*next)(dns_dbiterator_t *iterator);
	isc_result_t (*current)(dns_dbiterator_t *iterator,
				dns_dbnode_t **nodep, dns_name_t *name);
	isc_result_t (*pause)(dns_dbiterator_t *iterator);
	isc_result_t (*origin)(dns_dbiterator_t *iterator, dns_name_t *name);
} dns_dbiteratormethods_t;

#define DNS_DBITERATOR_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'I')
#define DNS_DBITERATOR_VALID(dbi) ISC_MAGIC_VALID(dbi, DNS_DBITERATOR_MAGIC)
/*%
 * This structure is actually just the common prefix of a DNS db
 * implementation's version of a dns_dbiterator_t.
 *
 * Clients may use the 'db' field of this structure.  Except for that field,
 * direct use of this structure by clients is forbidden.  DB implementations
 * may change the structure.  'magic' must be DNS_DBITERATOR_MAGIC for any of
 * the dns_dbiterator routines to work.  DB iterator implementations must
 * maintain all DB iterator invariants.
 */
struct dns_dbiterator {
	/* Unlocked. */
	unsigned int		 magic;
	dns_dbiteratormethods_t *methods;
	dns_db_t		 *db;
	bool			 relative_names;
	bool			 cleaning;
};

void
dns_dbiterator_destroy(dns_dbiterator_t **iteratorp);
/*%<
 * Destroy '*iteratorp'.
 *
 * Requires:
 *
 *\li	'*iteratorp' is a valid iterator.
 *
 * Ensures:
 *
 *\li	All resources used by the iterator are freed.
 *
 *\li	*iteratorp == NULL.
 */

isc_result_t
dns_dbiterator_first(dns_dbiterator_t *iterator);
/*%<
 * Move the node cursor to the first node in the database (if any).
 *
 * Requires:
 *\li	'iterator' is a valid iterator.
 *
 * Returns:
 *\li	#ISC_R_SUCCESS
 *\li	#ISC_R_NOMORE			There are no nodes in the database.
 *
 *\li	Other results are possible, depending on the DB implementation.
 */

isc_result_t
dns_dbiterator_last(dns_dbiterator_t *iterator);
/*%<
 * Move the node cursor to the last node in the database (if any).
 *
 * Requires:
 *\li	'iterator' is a valid iterator.
 *
 * Returns:
 *\li	#ISC_R_SUCCESS
 *\li	#ISC_R_NOMORE			There are no nodes in the database.
 *
 *\li	Other results are possible, depending on the DB implementation.
 */

isc_result_t
dns_dbiterator_seek(dns_dbiterator_t *iterator, const dns_name_t *name);
/*%<
 * Move the node cursor to the node with name 'name'.
 *
 * Requires:
 *\li	'iterator' is a valid iterator.
 *
 *\li	'name' is a valid name.
 *
 * Returns:
 *\li	#ISC_R_SUCCESS
 *\li	#ISC_R_NOTFOUND
 *\li	#DNS_R_PARTIALMATCH
 *	(node is at name above requested named when name has children)
 *
 *\li	Other results are possible, depending on the DB implementation.
 */

isc_result_t
dns_dbiterator_prev(dns_dbiterator_t *iterator);
/*%<
 * Move the node cursor to the previous node in the database (if any).
 *
 * Requires:
 *\li	'iterator' is a valid iterator.
 *
 * Returns:
 *\li	#ISC_R_SUCCESS
 *\li	#ISC_R_NOMORE			There are no more nodes in the
 *					database.
 *
 *\li	Other results are possible, depending on the DB implementation.
 */

isc_result_t
dns_dbiterator_next(dns_dbiterator_t *iterator);
/*%<
 * Move the node cursor to the next node in the database (if any).
 *
 * Requires:
 *\li	'iterator' is a valid iterator.
 *
 * Returns:
 *\li	#ISC_R_SUCCESS
 *\li	#ISC_R_NOMORE			There are no more nodes in the
 *					database.
 *
 *\li	Other results are possible, depending on the DB implementation.
 */

isc_result_t
dns_dbiterator_current(dns_dbiterator_t *iterator, dns_dbnode_t **nodep,
		       dns_name_t *name);
/*%<
 * Return the current node.
 *
 * Notes:
 *\li	If 'name' is not NULL, it will be set to the name of the node.
 *
 * Requires:
 *\li	'iterator' is a valid iterator.
 *
 *\li	nodep != NULL && *nodep == NULL
 *
 *\li	The node cursor of 'iterator' is at a valid location (i.e. the
 *	result of last call to a cursor movement command was ISC_R_SUCCESS).
 *
 *\li	'name' is NULL, or is a valid name with a dedicated buffer.
 *
 * Returns:
 *
 *\li	#ISC_R_SUCCESS
 *\li	#DNS_R_NEWORIGIN			If this iterator was created
 * with 'relative_names' set to true, then #DNS_R_NEWORIGIN will be returned
 *when
 * the origin the names are relative to changes.  This result can occur only
 *when
 *'name' is not NULL.  This is also a successful result.
 *
 *\li	Other results are possible, depending on the DB implementation.
 */

isc_result_t
dns_dbiterator_pause(dns_dbiterator_t *iterator);
/*%<
 * Pause iteration.
 *
 * Calling a cursor movement method or dns_dbiterator_current() may cause
 * database locks to be acquired.  Rather than reacquire these locks every
 * time one of these routines is called, the locks may simply be held.
 * Calling dns_dbiterator_pause() releases any such locks.  Iterator clients
 * should call this routine any time they are not going to execute another
 * iterator method in the immediate future.
 *
 * Requires:
 *\li	'iterator' is a valid iterator.
 *
 * Ensures:
 *\li	Any database locks being held for efficiency of iterator access are
 *	released.
 *
 * Returns:
 *\li	#ISC_R_SUCCESS
 *
 *\li	Other results are possible, depending on the DB implementation.
 */

isc_result_t
dns_dbiterator_origin(dns_dbiterator_t *iterator, dns_name_t *name);
/*%<
 * Return the origin to which returned node names are relative.
 *
 * Requires:
 *
 *\li	'iterator' is a valid relative_names iterator.
 *
 *\li	'name' is a valid name with a dedicated buffer.
 *
 * Returns:
 *
 *\li	#ISC_R_SUCCESS
 *\li	#ISC_R_NOSPACE
 *
 *\li	Other results are possible, depending on the DB implementation.
 */

void
dns_dbiterator_setcleanmode(dns_dbiterator_t *iterator, bool mode);
/*%<
 * Indicate that the given iterator is/is not cleaning the DB.
 *
 * Notes:
 *\li	When 'mode' is true,
 *
 * Requires:
 *\li	'iterator' is a valid iterator.
 */

ISC_LANG_ENDDECLS

#endif /* DNS_DBITERATOR_H */

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
13 Aug 2026 11.36 AM
root / root
0755
acl.h
6.325 KB
5 Nov 2021 9.03 AM
root / root
0644
adb.h
21.745 KB
5 Nov 2021 9.03 AM
root / root
0644
badcache.h
3.308 KB
5 Nov 2021 9.03 AM
root / root
0644
bit.h
0.779 KB
5 Nov 2021 9.03 AM
root / root
0644
byaddr.h
3.514 KB
5 Nov 2021 9.03 AM
root / root
0644
cache.h
8.525 KB
13 Aug 2026 11.31 AM
root / root
0644
callbacks.h
2.227 KB
5 Nov 2021 9.03 AM
root / root
0644
catz.h
11.603 KB
5 Nov 2021 9.03 AM
root / root
0644
cert.h
1.431 KB
5 Nov 2021 9.03 AM
root / root
0644
client.h
14.187 KB
5 Nov 2021 9.03 AM
root / root
0644
clientinfo.h
1.968 KB
5 Nov 2021 9.03 AM
root / root
0644
compress.h
6.882 KB
5 Nov 2021 9.03 AM
root / root
0644
db.h
49.264 KB
13 Aug 2026 11.31 AM
root / root
0644
dbiterator.h
7.212 KB
5 Nov 2021 9.03 AM
root / root
0644
dbtable.h
3.093 KB
5 Nov 2021 9.03 AM
root / root
0644
diff.h
6.874 KB
5 Nov 2021 9.03 AM
root / root
0644
dispatch.h
15.174 KB
5 Nov 2021 9.03 AM
root / root
0644
dlz.h
10.621 KB
5 Nov 2021 9.03 AM
root / root
0644
dlz_dlopen.h
4.291 KB
5 Nov 2021 9.03 AM
root / root
0644
dns64.h
5.586 KB
5 Nov 2021 9.03 AM
root / root
0644
dnsrps.h
2.512 KB
5 Nov 2021 9.03 AM
root / root
0644
dnssec.h
12.54 KB
13 Aug 2026 11.31 AM
root / root
0644
dnstap.h
9.954 KB
5 Nov 2021 9.03 AM
root / root
0644
ds.h
1.626 KB
5 Nov 2021 9.03 AM
root / root
0644
dsdigest.h
1.673 KB
5 Nov 2021 9.03 AM
root / root
0644
dyndb.h
4.755 KB
5 Nov 2021 9.03 AM
root / root
0644
ecdb.h
0.787 KB
5 Nov 2021 9.03 AM
root / root
0644
ecs.h
1.221 KB
5 Nov 2021 9.03 AM
root / root
0644
edns.h
0.765 KB
5 Nov 2021 9.03 AM
root / root
0644
enumclass.h
1.191 KB
13 Aug 2026 11.32 AM
root / root
0644
enumtype.h
8.286 KB
13 Aug 2026 11.32 AM
root / root
0644
events.h
4.347 KB
5 Nov 2021 9.03 AM
root / root
0644
fixedname.h
1.613 KB
5 Nov 2021 9.03 AM
root / root
0644
forward.h
2.988 KB
5 Nov 2021 9.03 AM
root / root
0644
geoip.h
2.285 KB
5 Nov 2021 9.03 AM
root / root
0644
ipkeylist.h
2.167 KB
5 Nov 2021 9.03 AM
root / root
0644
iptable.h
1.485 KB
5 Nov 2021 9.03 AM
root / root
0644
journal.h
9.484 KB
5 Nov 2021 9.03 AM
root / root
0644
kasp.h
11.84 KB
5 Nov 2021 9.03 AM
root / root
0644
keydata.h
1.022 KB
5 Nov 2021 9.03 AM
root / root
0644
keyflags.h
1.247 KB
5 Nov 2021 9.03 AM
root / root
0644
keymgr.h
4.011 KB
5 Nov 2021 9.03 AM
root / root
0644
keytable.h
7.687 KB
5 Nov 2021 9.03 AM
root / root
0644
keyvalues.h
3.987 KB
5 Nov 2021 9.03 AM
root / root
0644
lib.h
0.97 KB
5 Nov 2021 9.03 AM
root / root
0644
librpz.h
30.665 KB
5 Nov 2021 9.03 AM
root / root
0644
lmdb.h
0.761 KB
5 Nov 2021 9.03 AM
root / root
0644
log.h
3.935 KB
5 Nov 2021 9.03 AM
root / root
0644
lookup.h
2.853 KB
5 Nov 2021 9.03 AM
root / root
0644
master.h
8.58 KB
5 Nov 2021 9.03 AM
root / root
0644
masterdump.h
9.896 KB
5 Nov 2021 9.03 AM
root / root
0644
message.h
38.64 KB
13 Aug 2026 11.31 AM
root / root
0644
name.h
36.896 KB
13 Aug 2026 11.31 AM
root / root
0644
ncache.h
4.844 KB
5 Nov 2021 9.03 AM
root / root
0644
nsec.h
2.993 KB
5 Nov 2021 9.03 AM
root / root
0644
nsec3.h
8.064 KB
5 Nov 2021 9.03 AM
root / root
0644
nta.h
4.732 KB
5 Nov 2021 9.03 AM
root / root
0644
opcode.h
0.982 KB
5 Nov 2021 9.03 AM
root / root
0644
order.h
1.963 KB
5 Nov 2021 9.03 AM
root / root
0644
peer.h
6.323 KB
5 Nov 2021 9.03 AM
root / root
0644
portlist.h
2.052 KB
5 Nov 2021 9.03 AM
root / root
0644
private.h
1.916 KB
5 Nov 2021 9.03 AM
root / root
0644
rbt.h
36.605 KB
13 Aug 2026 11.31 AM
root / root
0644
rcode.h
2.414 KB
5 Nov 2021 9.03 AM
root / root
0644
rdata.h
22.035 KB
5 Nov 2021 9.03 AM
root / root
0644
rdataclass.h
2.195 KB
5 Nov 2021 9.03 AM
root / root
0644
rdatalist.h
2.497 KB
5 Nov 2021 9.03 AM
root / root
0644
rdataset.h
18.275 KB
13 Aug 2026 11.31 AM
root / root
0644
rdatasetiter.h
3.82 KB
5 Nov 2021 9.03 AM
root / root
0644
rdataslab.h
4.167 KB
13 Aug 2026 11.31 AM
root / root
0644
rdatastruct.h
61.233 KB
13 Aug 2026 11.32 AM
root / root
0644
rdatatype.h
2.236 KB
5 Nov 2021 9.03 AM
root / root
0644
request.h
8.972 KB
5 Nov 2021 9.03 AM
root / root
0644
resolver.h
19.68 KB
5 Nov 2021 9.03 AM
root / root
0644
result.h
8.98 KB
5 Nov 2021 9.03 AM
root / root
0644
rootns.h
0.87 KB
5 Nov 2021 9.03 AM
root / root
0644
rpz.h
11.871 KB
5 Nov 2021 9.03 AM
root / root
0644
rriterator.h
4.115 KB
5 Nov 2021 9.03 AM
root / root
0644
rrl.h
6.796 KB
5 Nov 2021 9.03 AM
root / root
0644
sdb.h
7.178 KB
5 Nov 2021 9.03 AM
root / root
0644
sdlz.h
13.76 KB
5 Nov 2021 9.03 AM
root / root
0644
secalg.h
1.665 KB
5 Nov 2021 9.03 AM
root / root
0644
secproto.h
1.52 KB
5 Nov 2021 9.03 AM
root / root
0644
soa.h
2.128 KB
5 Nov 2021 9.03 AM
root / root
0644
ssu.h
7.014 KB
5 Nov 2021 9.03 AM
root / root
0644
stats.h
24.11 KB
5 Nov 2021 9.03 AM
root / root
0644
tcpmsg.h
3.055 KB
5 Nov 2021 9.03 AM
root / root
0644
time.h
1.653 KB
5 Nov 2021 9.03 AM
root / root
0644
timer.h
1.025 KB
5 Nov 2021 9.03 AM
root / root
0644
tkey.h
7.476 KB
5 Nov 2021 9.03 AM
root / root
0644
tsec.h
2.877 KB
5 Nov 2021 9.03 AM
root / root
0644
tsig.h
8.298 KB
5 Nov 2021 9.03 AM
root / root
0644
ttl.h
1.832 KB
5 Nov 2021 9.03 AM
root / root
0644
types.h
14.242 KB
13 Aug 2026 11.31 AM
root / root
0644
update.h
1.957 KB
5 Nov 2021 9.03 AM
root / root
0644
validator.h
6.522 KB
13 Aug 2026 11.31 AM
root / root
0644
version.h
0.663 KB
5 Nov 2021 9.03 AM
root / root
0644
view.h
34.513 KB
13 Aug 2026 11.31 AM
root / root
0644
xfrin.h
2.26 KB
5 Nov 2021 9.03 AM
root / root
0644
zone.h
64.007 KB
13 Aug 2026 11.31 AM
root / root
0644
zonekey.h
0.758 KB
5 Nov 2021 9.03 AM
root / root
0644
zoneverify.h
1.36 KB
5 Nov 2021 9.03 AM
root / root
0644
zt.h
5.118 KB
13 Aug 2026 11.31 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF