summaryrefslogtreecommitdiffstats
path: root/server/resolv/ares/ares_parse_srv_reply.h
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2009-07-15 18:21:15 +0200
committerSimo Sorce <ssorce@redhat.com>2009-07-24 10:21:43 -0400
commitb6bf81803977318aad8b876a56a42e4a3ffbae6a (patch)
treeedc8117a07bce3e6cbe0a7ff5e2dd674afdcc2dc /server/resolv/ares/ares_parse_srv_reply.h
parentb919feeb115751ddda02a326e1d2636f1c83e32f (diff)
downloadsssd-b6bf81803977318aad8b876a56a42e4a3ffbae6a.tar.gz
sssd-b6bf81803977318aad8b876a56a42e4a3ffbae6a.tar.xz
sssd-b6bf81803977318aad8b876a56a42e4a3ffbae6a.zip
Add ares helpers into sssd
This patch adds ares parsing functions that are not yet upstreamed together with a private ares header file (ares_dns.h) that contains some necessary macros for parsing common structures in the replies. Users of these two parsing functions must also include the header files ares_parse_{srv,txt}_reply.h that contain the function and structures declarations that should eventually end up in upstream ares.h
Diffstat (limited to 'server/resolv/ares/ares_parse_srv_reply.h')
-rw-r--r--server/resolv/ares/ares_parse_srv_reply.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/server/resolv/ares/ares_parse_srv_reply.h b/server/resolv/ares/ares_parse_srv_reply.h
new file mode 100644
index 000000000..43eb41548
--- /dev/null
+++ b/server/resolv/ares/ares_parse_srv_reply.h
@@ -0,0 +1,14 @@
+#ifndef __ARES_PARSE_SRV_REPLY_H__
+#define __ARES_PARSE_SRV_REPLY_H__
+
+struct srv_reply {
+ u_int16_t weight;
+ u_int16_t priority;
+ u_int16_t port;
+ char *host;
+};
+
+int _ares_parse_srv_reply (const unsigned char *abuf, int alen,
+ struct srv_reply **srv_out, int *nsrvreply);
+
+#endif /* __ARES_PARSE_SRV_REPLY_H__ */