GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
DNSTABLE_ITER(3)   DNSTABLE_ITER(3)

dnstable_iter - iterate over a sequence of dnstable entries

#include <dnstable.h>

dnstable_res
dnstable_iter_next(struct dnstable_iter *it, struct dnstable_entry **ent);

dnstable_res
dnstable_iter_get_count(struct dnstable_iter *it, dnstable_stat_stage stage,

dnstable_stat_category category, bool *exists, uint64_t *count);

void
dnstable_iter_set_stat_func(struct dnstable_iter *it, dnstable_iter_stat_func stat_func);

dnstable_iter_destroy(struct dnstable_iter **it);

The dnstable_iter interface is used to return a sequence of one or more dnstable entries. Once the caller obtains a dnstable_iter object, dnstable_iter_next() should be repeatedly called on it until there are no more entries to retrieve, at which point the iterator object must be freed by calling dnstable_iter_destroy().

Query statistics are available through dnstable_iter_get_count(), which returns dnstable_res_success for a valid count category and a valid processing stage, with *exists set to false if no such category is supported for the given stage stage. dnstable_res_failure is returned upon a query for an unknown stage, an unknown category, or if count is NULL.

dnstable_iter_next() returns dnstable_res_success if an entry was successfully retrieved, in which case ent will point to a dnstable_entry object which must be freed by the caller using dnstable_entry_destroy(). dnstable_res_failure is returned if there are no more entries in the sequence.

dnstable_entry(3) dnstable_stat(3)

12/20/2023  

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.