From 919b935980b207a780644cc192912bb7df089969 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Thu, 30 May 2002 01:40:29 +0000 Subject: Version 0.1.12 from FTP git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@454 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/acl.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 include/asterisk/acl.h (limited to 'include/asterisk/acl.h') 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 + * + * 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 + +/* 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 -- cgit v1.2.3