aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-27 00:37:07 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-27 00:37:07 +0000
commit9ec373f6778f50f5eb3cd63e99336bbfc9d6f731 (patch)
tree652bf0ef202322e15cf47d453a0f60831444df1a /include
parent8fba3ff3778d08ebbc70923f6309aa36fbb37a35 (diff)
Add missing files
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1559 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-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 */