aboutsummaryrefslogtreecommitdiff
path: root/include/res_update.h
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2007-06-03 17:02:29 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2007-06-03 17:02:29 +0000
commit861249f5830e8658b61130e0ee7eaad2e93d0449 (patch)
treefcab9dae0a6dfbc5403b46311a5588c3f7f49dd4 /include/res_update.h
parent3f25740ec6845340de7abaae80607dea9c3a4bb8 (diff)
downloadsrc-861249f5830e8658b61130e0ee7eaad2e93d0449.tar.gz
src-861249f5830e8658b61130e0ee7eaad2e93d0449.zip
Vendor import of BIND 9.4.1
Notes
Notes: svn path=/vendor/resolver/dist/; revision=170242
Diffstat (limited to 'include/res_update.h')
-rw-r--r--include/res_update.h30
1 files changed, 17 insertions, 13 deletions
diff --git a/include/res_update.h b/include/res_update.h
index 07a37f34c264..2e6f171b7367 100644
--- a/include/res_update.h
+++ b/include/res_update.h
@@ -16,34 +16,36 @@
*/
/*
- * $Id: res_update.h,v 1.1.206.1 2004/03/09 08:33:29 marka Exp $
+ * $Id: res_update.h,v 1.2.18.1 2005/04/27 05:00:49 sra Exp $
*/
#ifndef __RES_UPDATE_H
#define __RES_UPDATE_H
+/*! \file */
+
#include <sys/types.h>
#include <arpa/nameser.h>
#include <isc/list.h>
#include <resolv.h>
-/*
+/*%
* This RR-like structure is particular to UPDATE.
*/
struct ns_updrec {
LINK(struct ns_updrec) r_link, r_glink;
- ns_sect r_section; /* ZONE/PREREQUISITE/UPDATE */
- char * r_dname; /* owner of the RR */
- ns_class r_class; /* class number */
- ns_type r_type; /* type number */
- u_int32_t r_ttl; /* time to live */
- u_char * r_data; /* rdata fields as text string */
- u_int r_size; /* size of r_data field */
- int r_opcode; /* type of operation */
+ ns_sect r_section; /*%< ZONE/PREREQUISITE/UPDATE */
+ char * r_dname; /*%< owner of the RR */
+ ns_class r_class; /*%< class number */
+ ns_type r_type; /*%< type number */
+ u_int32_t r_ttl; /*%< time to live */
+ u_char * r_data; /*%< rdata fields as text string */
+ u_int r_size; /*%< size of r_data field */
+ int r_opcode; /*%< type of operation */
/* following fields for private use by the resolver/server routines */
- struct databuf *r_dp; /* databuf to process */
- struct databuf *r_deldp; /* databuf's deleted/overwritten */
- u_int r_zone; /* zone number on server */
+ struct databuf *r_dp; /*%< databuf to process */
+ struct databuf *r_deldp; /*%< databuf's deleted/overwritten */
+ u_int r_zone; /*%< zone number on server */
};
typedef struct ns_updrec ns_updrec;
typedef LIST(ns_updrec) ns_updque;
@@ -63,3 +65,5 @@ int res_nmkupdate __P((res_state, ns_updrec *, u_char *, int));
int res_nupdate __P((res_state, ns_updrec *, ns_tsig_key *));
#endif /*__RES_UPDATE_H*/
+
+/*! \file */