#include "discovery_proxy.h"
#include "zbxproxybuffer.h"
void *zbx_discovery_open_proxy(void)
return zbx_pb_discovery_open();
void zbx_discovery_close_proxy(void *handle)
zbx_pb_discovery_close((zbx_pb_discovery_data_t *)handle);
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)
ZBX_UNUSED(add_event_cb);
zbx_pb_discovery_write_host((zbx_pb_discovery_data_t *)handle, druleid, ip, dns, status, (int)now, "");
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)
ZBX_UNUSED(unique_dcheckid);
ZBX_UNUSED(add_event_cb);
zbx_pb_discovery_write_service((zbx_pb_discovery_data_t *)handle, druleid, dcheckid, ip, dns, port, status,
void zbx_discovery_find_host_proxy(const zbx_uint64_t druleid, const char *ip, zbx_db_dhost *dhost)
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)
zbx_pb_discovery_write_host((zbx_pb_discovery_data_t *)handle, druleid, "", "", DOBJECT_STATUS_FINALIZED,