/* ** Copyright (C) 2001-2025 Zabbix SIA ** ** This program is free software: you can redistribute it and/or modify it under the terms of ** the GNU Affero General Public License as published by the Free Software Foundation, version 3. ** ** 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 Affero General Public License for more details. ** ** You should have received a copy of the GNU Affero General Public License along with this program. ** If not, see <https://www.gnu.org/licenses/>. **/ #ifndef ZABBIX_DISCOVERY_PROXY_H #define ZABBIX_DISCOVERY_PROXY_H #include "zbxdbhigh.h" void *zbx_discovery_open_proxy(void); void zbx_discovery_find_host_proxy(const zbx_uint64_t druleid, const char *ip, zbx_db_dhost *dhost); void zbx_discovery_update_host_proxy(void *handle, zbx_uint64_t druleid, zbx_db_dhost *dhost, const char *ip, const char *dns, int status, time_t now, zbx_add_event_func_t add_event_cb); void zbx_discovery_update_service_proxy(void *handle, zbx_uint64_t druleid, zbx_uint64_t dcheckid, zbx_uint64_t unique_dcheckid, zbx_db_dhost *dhost, const char *ip, const char *dns, int port, int status, const char *value, time_t now, zbx_vector_uint64_t *dserviceids, zbx_add_event_func_t add_event_cb); void zbx_discovery_update_service_down_proxy(const zbx_uint64_t dhostid, const time_t now, zbx_vector_uint64_t *dserviceids); void zbx_discovery_update_drule_proxy(void *handle, zbx_uint64_t druleid, const char *error, time_t now); void zbx_discovery_close_proxy(void *handle); #endif