Source
xxxxxxxxxx
/*
** Zabbix
** Copyright (C) 2001-2023 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.
**/
typedef enum
{
ZABBIX_AGENT_STEP_CONNECT_WAIT = 0,
ZABBIX_AGENT_STEP_TLS_WAIT,
ZABBIX_AGENT_STEP_SEND,
ZABBIX_AGENT_STEP_RECV
}
zbx_zabbix_agent_step_t;
typedef struct
{
zbx_dc_item_context_t item;
void *arg;
void *arg_action;
zbx_socket_t s;
zbx_tcp_recv_context_t tcp_recv_context;
zbx_tcp_send_context_t tcp_send_context;
zbx_zabbix_agent_step_t step;
char *server_name;
char *tls_arg1;
char *tls_arg2;
unsigned char tls_connect;
const char *config_source_ip;
int config_timeout;
}
zbx_agent_context;
int zbx_async_check_agent(zbx_dc_item_t *item, AGENT_RESULT *result, zbx_async_task_clear_cb_t clear_cb,
void *arg, void *arg_action, struct event_base *base, struct evdns_base *dnsbase,
const char *config_source_ip);
void zbx_async_check_agent_clean(zbx_agent_context *agent_context);