Source
/*
** Zabbix
** 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 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.
**/
extern unsigned char program_type;
static zbx_mutex_t proxy_lock = ZBX_MUTEX_NULL;
int zbx_send_proxy_data_response(const DC_PROXY *proxy, zbx_socket_t *sock, const char *info, int status,
int upload_status)
{
struct zbx_json json;
zbx_vector_ptr_t tasks;
int ret, flags = ZBX_TCP_PROTOCOL;
zbx_vector_ptr_create(&tasks);
zbx_json_init(&json, ZBX_JSON_STAT_BUF_LEN);
switch (upload_status)
{
case ZBX_PROXY_UPLOAD_DISABLED:
zbx_json_addstring(&json, ZBX_PROTO_TAG_PROXY_UPLOAD, ZBX_PROTO_VALUE_PROXY_UPLOAD_DISABLED,
ZBX_JSON_TYPE_STRING);
break;
case ZBX_PROXY_UPLOAD_ENABLED:
zbx_json_addstring(&json, ZBX_PROTO_TAG_PROXY_UPLOAD, ZBX_PROTO_VALUE_PROXY_UPLOAD_ENABLED,
ZBX_JSON_TYPE_STRING);
break;
}
if (SUCCEED == status)
{
zbx_json_addstring(&json, ZBX_PROTO_TAG_RESPONSE, ZBX_PROTO_VALUE_SUCCESS, ZBX_JSON_TYPE_STRING);
zbx_tm_get_remote_tasks(&tasks, proxy->hostid);