mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-22 13:25:17 +00:00
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1084 65c4cc65-6c06-0410-ace0-fbb531ad65f3
40 lines
1008 B
C
Executable File
40 lines
1008 B
C
Executable File
/*
|
|
* 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);
|
|
extern int inaddrcmp(struct sockaddr_in *sin1, struct sockaddr_in *sin2);
|
|
extern int ast_ouraddrfor(struct in_addr *them, struct in_addr *us);
|
|
extern int ast_lookup_iface(char *iface, struct in_addr *address);
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|