Source
void lld_override_host(const zbx_vector_ptr_t *overrides, const char *name, zbx_vector_uint64_t *lnk_templateids,
/*
** 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 struct
{
zbx_uint64_t parent_itemid;
zbx_uint64_t itemid; /* the item, created by the item prototype */
}
zbx_lld_item_link_t;
typedef struct
{
struct zbx_json_parse jp_row;
zbx_vector_ptr_t item_links; /* the list of item prototypes */
zbx_vector_ptr_t overrides;
}
zbx_lld_row_t;
typedef struct
{
zbx_uint64_t itemid;
zbx_uint64_t valuemapid;
zbx_uint64_t interfaceid;
zbx_uint64_t master_itemid;
char *name;
char *key;
char *delay;
char *history;
char *trends;
char *trapper_hosts;
char *units;
char *formula;
char *logtimefmt;
char *params;
char *ipmi_sensor;
char *snmp_oid;
char *username;
char *password;
char *publickey;
char *privatekey;
char *description;
char *jmx_endpoint;
char *timeout;
char *url;
char *query_fields;
char *posts;
char *status_codes;
char *http_proxy;
char *headers;
char *ssl_cert_file;
char *ssl_key_file;
char *ssl_key_password;
unsigned char verify_peer;
unsigned char verify_host;
unsigned char follow_redirects;
unsigned char post_type;
unsigned char retrieve_mode;
unsigned char request_method;
unsigned char output_format;
unsigned char type;
unsigned char value_type;
unsigned char status;
unsigned char authtype;
unsigned char allow_traps;
unsigned char discover;
zbx_vector_ptr_t lld_rows;
zbx_vector_ptr_t preproc_ops;
zbx_vector_item_param_ptr_t item_params;