aboutsummaryrefslogtreecommitdiff
path: root/ares/ares.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-10-29 08:59:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-10-29 08:59:40 +0000
commit950a034895b8a483eb6c0c97e16a2cbf03350815 (patch)
tree99269616554c7370e12d0e42b08a8457805deb0d /ares/ares.h
parent982e655c077ea3f8f0f198aa6acf99da581f656e (diff)
Jakub Hrozek added ares_parse_txt_reply() for TXT parsing
Diffstat (limited to 'ares/ares.h')
-rw-r--r--ares/ares.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/ares/ares.h b/ares/ares.h
index 4a53cece1..35038d233 100644
--- a/ares/ares.h
+++ b/ares/ares.h
@@ -436,6 +436,11 @@ struct ares_srv_reply {
char *host;
};
+struct ares_txt_reply {
+ unsigned int length;
+ unsigned char *txt;
+};
+
/*
** Parse the buffer, starting at *abuf and of length alen bytes, previously
** obtained from an ares_search call. Put the results in *host, if nonnull.
@@ -472,6 +477,11 @@ CARES_EXTERN int ares_parse_srv_reply(const unsigned char* abuf,
struct ares_srv_reply** srv_out,
int *nsrvreply);
+CARES_EXTERN int ares_parse_txt_reply(const unsigned char* abuf,
+ int alen,
+ struct ares_txt_reply** txt_out,
+ int *nsrvreply);
+
CARES_EXTERN void ares_free_string(void *str);
CARES_EXTERN void ares_free_hostent(struct hostent *host);