X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/0ba0614a998909d8b4f51988d7a8af3ba369a5d9..8e5b0abb4e5416f4bd244500d9ba8dd45788093e:/src/adns.h diff --git a/src/adns.h b/src/adns.h index 18c21df..ea4c680 100644 --- a/src/adns.h +++ b/src/adns.h @@ -1,4 +1,9 @@ -/**/ +/* + * Copyright (C)1998 Ian Jackson. + * This version provided for review and comment only. + * + * $Id$ + */ #ifndef ADNS_H_INCLUDED #define ADNS_H_INCLUDED @@ -141,10 +146,12 @@ typedef struct { adns_status status; char *cname; /* always NULL if query was for CNAME records */ adns_rrtype type; - int nrrs; + int nrrs, rrsz; union { - struct in_addr *inaddr; /* a */ + void *untyped; + unsigned char *bytes; char *(*str); /* ns_raw, cname, ptr, ptr_raw, txt, _mf */ + struct in_addr *inaddr; /* a */ adns_rr_dmaddr *dmaddr; /* ns */ adns_rr_strpair *strpair; /* hinfo, rp, rp_raw */ adns_rr_intdmaddr *intdmaddr; /* mx */ @@ -163,6 +170,8 @@ typedef struct { * Must always be non-null pointer; * If *query_io is 0 to start with then any query may be returned; * If *query_io is !0 adns_query then only that query may be returned. + * If the call is successful, *query_io, *answer_r, and *context_r + * will all be set. * Errors: * Return values are 0 or an errno value; * Seriously fatal system errors (eg, failure to create sockets, @@ -173,8 +182,6 @@ typedef struct { * type will always be the type requested; * If no (appropriate) requests are done adns_check returns EWOULDBLOCK; * If no (appropriate) requests are outstanding adns_query and adns_wait return ESRCH; - * If malloc failure occurs during internal allocation or processing - * ands_check and _wait set *answer to 0. */ int adns_init(adns_state *newstate_r, adns_initflags flags, FILE *diagfile/*0=>stderr*/); @@ -260,4 +267,6 @@ void adns_interest(adns_state, int *maxfd_io, fd_set *readfds_io, * } */ +const char *adns_strerror(adns_status st); + #endif