Source
ssize_t zbx_tcp_recv_context(zbx_socket_t *s, zbx_tcp_recv_context_t *context, unsigned char flags, short *events)
/*
** 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/>.
**/
/* allow compilation on older Windows systems */
/* allow compilation on older Windows systems */
/* SOCK_CLOEXEC is Linux-specific, available since 2.6.23 */
static int socket_set_nonblocking(ZBX_SOCKET s);
static void tcp_set_socket_strerror_from_getaddrinfo(const char *ip);
static ssize_t tcp_read(zbx_socket_t *s, char *buffer, size_t size, short *events);
zbx_config_tls_t *zbx_config_tls_new(void)
{
zbx_config_tls_t *config_tls;
config_tls = (zbx_config_tls_t *)zbx_malloc(NULL, sizeof(zbx_config_tls_t));
config_tls->connect_mode = ZBX_TCP_SEC_UNENCRYPTED;
config_tls->accept_modes = ZBX_TCP_SEC_UNENCRYPTED;
config_tls->connect = NULL;
config_tls->accept = NULL;
config_tls->ca_file = NULL;
config_tls->crl_file = NULL;
config_tls->server_cert_issuer = NULL;