aboutsummaryrefslogtreecommitdiff
path: root/ares/ares.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-30 09:06:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-30 09:06:42 +0000
commitbe8f8e66a450308547c356271ce439d9877ac7b5 (patch)
tree24530632b87870cda1253d292bdf229e6dfb6e6d /ares/ares.h
parent9fadfffb9d5533c08321ed972f9aeb003d4c2b5b (diff)
Dominick Meglio's new ares_expand_string() function
Diffstat (limited to 'ares/ares.h')
-rw-r--r--ares/ares.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ares/ares.h b/ares/ares.h
index 09efa133f..0dea2ff99 100644
--- a/ares/ares.h
+++ b/ares/ares.h
@@ -55,6 +55,7 @@
#define ARES_EFILE 14
#define ARES_ENOMEM 15
#define ARES_EDESTRUCTION 16
+#define ARES_EBADSTR 17
/* Flag values */
#define ARES_FLAG_USEVC (1 << 0)
@@ -125,6 +126,8 @@ int ares_mkquery(const char *name, int dnsclass, int type, unsigned short id,
int rd, unsigned char **buf, int *buflen);
int ares_expand_name(const unsigned char *encoded, const unsigned char *abuf,
int alen, char **s, long *enclen);
+int ares_expand_string(const unsigned char *encoded, const unsigned char *abuf,
+ int alen, unsigned char **s, long *enclen);
int ares_parse_a_reply(const unsigned char *abuf, int alen,
struct hostent **host);
int ares_parse_ptr_reply(const unsigned char *abuf, int alen, const void *addr,