Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislavs Sokurenko <vladislavs.sokurenko@zabbix.com>2021-06-11 13:00:04 +0300
committerVladislavs Sokurenko <vladislavs.sokurenko@zabbix.com>2021-06-11 13:02:25 +0300
commitb3d744e6341202315ee8ded6d091e32dd4c9804d (patch)
tree5e33bd599591c86c10a7271b1e518c3378ed4a87 /include/service_protocol.h
parentb7300192acfc488525480b42c092e967a1d5c98d (diff)
........S. [ZBXNEXT-6674] added ability to update existing problem tags
Diffstat (limited to 'include/service_protocol.h')
-rw-r--r--include/service_protocol.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/service_protocol.h b/include/service_protocol.h
index 47011ddf207..556448321b1 100644
--- a/include/service_protocol.h
+++ b/include/service_protocol.h
@@ -23,8 +23,12 @@
#include "common.h"
#include "db.h"
#include "zbxalgo.h"
+#include "dbcache.h"
void zbx_service_serialize(unsigned char **data, size_t *data_alloc, size_t *data_offset, zbx_uint64_t eventid,
int clock, int value, int severity, const zbx_vector_ptr_t *tags);
void zbx_service_deserialize(const unsigned char *data, zbx_uint32_t size, zbx_vector_ptr_t *events);
+void zbx_service_serialize_problem_tags(unsigned char **data, size_t *data_alloc, size_t *data_offset,
+ zbx_uint64_t eventid, const zbx_vector_tags_t *tags);
+void zbx_service_deserialize_problem_tags(const unsigned char *data, zbx_uint32_t size, zbx_vector_ptr_t *events);
#endif