summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorian <ian>2006-04-06 18:59:53 +0000
committerian <ian>2006-04-06 18:59:53 +0000
commit2bd4b9f4167fa254b424385ee430d1402ef087b7 (patch)
tree66f07d867d7fb07010235918407057cc75bfe313 /src
parentfafb670c3c2f0b2c683d5485e197e1ed24bb93d4 (diff)
spec for adns_r_unknown
Diffstat (limited to 'src')
-rw-r--r--src/adns.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/adns.h b/src/adns.h
index cd0f463..65edbd8 100644
--- a/src/adns.h
+++ b/src/adns.h
@@ -107,6 +107,21 @@ typedef enum {
adns__rrt_typemask=0x0ffff,
adns__qtf_deref= 0x10000,/* dereference domains; perhaps get extra data */
adns__qtf_mail822= 0x20000,/* return mailboxes in RFC822 rcpt field fmt */
+
+ adns_r_unknown= 0x40000,
+ /* To use this, ask for records of type <rr-type-code>|adns_r_unknown.
+ * adns will not process the RDATA at all - you'll get intstr's, where
+ * the int is the length and the char* points to the data. String
+ * representation of the RR data is as in RFC3597. adns_rr_info
+ * will not return the type name in *rrtname_r (due to memory management
+ * problems); *fmtname_r will be set to "unknown".
+ *
+ * Do not specify adns_r_unknown along with a known RR type which
+ * requires domain name uncompression. Domain names will not be
+ * uncompressed and the resulting data will be useless. Asking for
+ * meta-RR types via adns_r_unknown will not work properly either
+ * and may make adns complain about server misbehaviour.
+ */
adns_r_none= 0,
@@ -335,7 +350,7 @@ typedef struct {
adns_rr_intstrpair *intstrpair; /* hinfo */
adns_rr_strpair *strpair; /* rp, rp_raw */
adns_rr_inthostaddr *inthostaddr;/* mx */
- adns_rr_intstr *intstr; /* mx_raw */
+ adns_rr_intstr *intstr; /* mx_raw, ...|unknown */
adns_rr_soa *soa; /* soa, soa_raw */
adns_rr_srvraw *srvraw; /* srv_raw */
adns_rr_srvha *srvha;/* srv */