You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/permissions/permissions.h

81 lines
2.5 KiB

/*
* $Id$
*
* PERMISSIONS module
*
* Copyright (C) 2003 Miklós Tirpák (mtirpak@sztaki.hu)
* Copyright (C) 2006 Juha Heinanen
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* Kamailio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* --------
* 2003-09-03 replaced /usr/local/et/ser/ with CFG_DIR (andrei)
*/
#ifndef PERMISSIONS_H
#define PERMISSIONS_H 1
#include "../../sr_module.h"
#include "../../lib/srdb1/db.h"
#include "../../pvar.h"
#include "rule.h"
#define DEFAULT_ALLOW_FILE "permissions.allow"
#define DEFAULT_DENY_FILE "permissions.deny"
typedef struct rule_file {
rule* rules; /* Parsed rule set */
char* filename; /* The name of the file */
} rule_file_t;
/*
* Maximum number if allow/deny file pairs that can be opened
* at any time
*/
#define MAX_RULE_FILES 64
extern str db_url; /* Database URL */
extern int db_mode; /* Database usage mode: 0=no cache, 1=cache */
extern str trusted_table; /* Name of trusted table */
extern str source_col; /* Name of source address column */
extern str proto_col; /* Name of protocol column */
extern str from_col; /* Name of from pattern column */
extern str ruri_col; /* Name of RURI pattern column */
extern str tag_col; /* Name of tag column */
extern str priority_col; /* Name of priority column */
extern str address_table; /* Name of address table */
extern str grp_col; /* Name of address group column */
extern str ip_addr_col; /* Name of ip address column */
extern str mask_col; /* Name of mask column */
extern str port_col; /* Name of port column */
extern int peer_tag_mode; /* Matching mode */
typedef struct int_or_pvar {
unsigned int i;
pv_spec_t *pvar; /* zero if int */
} int_or_pvar_t;
#define DISABLE_CACHE 0
#define ENABLE_CACHE 1
extern char *allow_suffix;
int allow_test(char *file, char *uri, char *contact);
#endif