aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/dns.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/dns.h')
-rwxr-xr-xinclude/asterisk/dns.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/asterisk/dns.h b/include/asterisk/dns.h
new file mode 100755
index 000000000..a0a64e30f
--- /dev/null
+++ b/include/asterisk/dns.h
@@ -0,0 +1,20 @@
+/*
+ * DNS support
+ *
+ * Written by Thorsten Lockert <tholo@trollphone.org>
+ *
+ * Funding provided by Troll Phone Networks AS
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License
+ */
+
+#ifndef _ASTERISK_DNS_H
+#define _ASTERISK_DNS_H
+
+struct ast_channel;
+
+extern int ast_search_dns(void *context, const char *dname, int class, int type,
+ int (*callback)(void *context, u_char *answer, int len, u_char *fullanswer));
+
+#endif /* _ASTERISK_DNS_H */