1 /*
2 ** Zabbix
3 ** Copyright (C) 2001-2021 Zabbix SIA
4 **
5 ** This program is free software; you can redistribute it and/or modify
6 ** it under the terms of the GNU General Public License as published by
7 ** the Free Software Foundation; either version 2 of the License, or
8 ** (at your option) any later version.
9 **
10 ** This program is distributed in the hope that it will be useful,
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ** GNU General Public License for more details.
14 **
15 ** You should have received a copy of the GNU General Public License
16 ** along with this program; if not, write to the Free Software
17 ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 **/
19 
20 #ifndef ZABBIX_OPERATIONS_H
21 #define ZABBIX_OPERATIONS_H
22 
23 #include "common.h"
24 #include "db.h"
25 #include "zbxalgo.h"
26 
27 extern int	CONFIG_TIMEOUT;
28 
29 void	op_template_add(const DB_EVENT *event, zbx_vector_uint64_t *lnk_templateids);
30 void	op_template_del(const DB_EVENT *event, zbx_vector_uint64_t *del_templateids);
31 void	op_groups_add(const DB_EVENT *event, zbx_vector_uint64_t *groupids);
32 void	op_groups_del(const DB_EVENT *event, zbx_vector_uint64_t *groupids);
33 void	op_host_add(const DB_EVENT *event);
34 void	op_host_del(const DB_EVENT *event);
35 void	op_host_enable(const DB_EVENT *event);
36 void	op_host_disable(const DB_EVENT *event);
37 void	op_host_inventory_mode(const DB_EVENT *event, int inventory_mode);
38 
39 #endif
40