Source
xxxxxxxxxx
/*
** Zabbix
** Copyright (C) 2001-2022 Zabbix SIA
**
** This program 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.
**
** This program 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.
**/
/* config file parsing options */
extern char *CONFIG_FILE;
extern char *CONFIG_LOG_TYPE_STR;
extern int CONFIG_LOG_TYPE;
extern char *CONFIG_LOG_FILE;
extern int CONFIG_LOG_FILE_SIZE;
extern int CONFIG_ALLOW_ROOT;
extern int CONFIG_TIMEOUT;
struct cfg_line
{
const char *parameter;
void *variable;
int type;
int mandatory;
zbx_uint64_t min;
zbx_uint64_t max;
};
typedef int (*cfg_custom_parameter_parser_t)(const char *value, struct cfg_line *cfg);
int parse_cfg_file(const char *cfg_file, struct cfg_line *cfg, int optional, int strict);