aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/acl.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-05-30 01:40:29 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-05-30 01:40:29 +0000
commit1894676b424803dd8dee2df9c0b76beeeb695fac (patch)
tree643b78509cf00b053cdb487804b4499a1b2f0db4 /include/asterisk/acl.h
parentadd416e064b0ba02f5efd6a1a6dcfdc8a353bdb8 (diff)
Version 0.1.12 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@454 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/acl.h')
-rwxr-xr-xinclude/asterisk/acl.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/asterisk/acl.h b/include/asterisk/acl.h
new file mode 100755
index 000000000..881821c53
--- /dev/null
+++ b/include/asterisk/acl.h
@@ -0,0 +1,36 @@
+/*
+ * Asterisk -- A telephony toolkit for Linux.
+ *
+ * Access Control of various sorts
+ *
+ * Copyright (C) 1999, Mark Spencer
+ *
+ * Mark Spencer <markster@linux-support.net>
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License
+ */
+
+#ifndef _ASTERISK_ACL_H
+#define _ASTERISK_ACL_H
+
+#if defined(__cplusplus) || defined(c_plusplus)
+extern "C" {
+#endif
+
+#include <netinet/in.h>
+
+/* Host based access control */
+
+struct ast_ha;
+
+extern void ast_free_ha(struct ast_ha *ha);
+extern struct ast_ha *ast_append_ha(char *sense, char *stuff, struct ast_ha *path);
+extern int ast_apply_ha(struct ast_ha *ha, struct sockaddr_in *sin);
+extern int ast_get_ip(struct sockaddr_in *sin, char *value);
+
+#if defined(__cplusplus) || defined(c_plusplus)
+}
+#endif
+
+#endif