Source
void zbx_alerter_deserialize_send_dispatch(const unsigned char *data, DB_MEDIATYPE *mt, zbx_vector_str_t *recipients)
/*
** 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.
**/
void zbx_am_db_mediatype_clear(zbx_am_db_mediatype_t *mediatype)
{
zbx_free(mediatype->smtp_server);
zbx_free(mediatype->smtp_helo);
zbx_free(mediatype->smtp_email);
zbx_free(mediatype->exec_path);
zbx_free(mediatype->exec_params);
zbx_free(mediatype->gsm_modem);
zbx_free(mediatype->username);
zbx_free(mediatype->passwd);
zbx_free(mediatype->script);
zbx_free(mediatype->attempt_interval);
zbx_free(mediatype->timeout);
}
/******************************************************************************
* *
* Purpose: frees the alert object *
* *
* Parameters: alert - [IN] the alert object *
* *
******************************************************************************/
void zbx_am_db_alert_free(zbx_am_db_alert_t *alert)
{
zbx_free(alert->sendto);
zbx_free(alert->subject);
zbx_free(alert->message);
zbx_free(alert->params);
zbx_free(alert->expression);
zbx_free(alert->recovery_expression);
zbx_free(alert);
}
void zbx_am_media_clear(zbx_am_media_t *media)
{
zbx_free(media->sendto);
}
void zbx_am_media_free(zbx_am_media_t *media)