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_s/permissions/permissions.h

79 lines
2.3 KiB

/*
* $Id$
*
* PERMISSIONS module
*
* Copyright (C) 2003 Miklós Tirpák (mtirpak@sztaki.hu)
* Copyright (C) 2006 iptelorg GmbH
*
* This file is part of ser, a free SIP server.
*
* ser 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
*
* For a license to use the ser software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
* info@iptel.org
*
* ser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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/srdb2/db.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 rule_file_t *allow; /* Parsed allow files */
extern rule_file_t *deny; /* Parsed deny files */
extern int max_rule_files;
extern int check_all_branches;
extern int safe_file_load;
extern char* db_url; /* Database URL */
extern int db_mode; /* Database usage mode: 0=no cache, 1=cache */
extern char* trusted_table; /* Name of trusted table */
extern char* source_col; /* Name of source address column */
extern char* proto_col; /* Name of protocol column */
extern char* from_col; /* Name of from pattern column */
extern char* ipmatch_table; /* Name of trusted table */
/* Database API */
extern db_ctx_t *db_conn;
#define DISABLE_CACHE 0
#define ENABLE_CACHE 1
#endif