⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
netdata
/
src
/
aclk
/
schema-wrappers
/
View File Name :
context.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef ACLK_SCHEMA_WRAPPER_CONTEXT_H #define ACLK_SCHEMA_WRAPPER_CONTEXT_H #include <stdint.h> #include <sys/types.h> #ifdef __cplusplus extern "C" { #endif typedef void* contexts_updated_t; typedef void* contexts_snapshot_t; struct context_updated { // context id const char *id; uint64_t version; uint64_t first_entry; uint64_t last_entry; int deleted; const char *title; uint64_t priority; const char *chart_type; const char *units; const char *family; }; // ContextS Snapshot related contexts_snapshot_t contexts_snapshot_new(const char *claim_id, const char *node_id, uint64_t version); void contexts_snapshot_delete(contexts_snapshot_t ctxs_snapshot); void contexts_snapshot_set_version(contexts_snapshot_t ctxs_snapshot, uint64_t version); void contexts_snapshot_add_ctx_update(contexts_snapshot_t ctxs_snapshot, struct context_updated *ctx_update); char *contexts_snapshot_2bin(contexts_snapshot_t ctxs_snapshot, size_t *len); // ContextS Updated related contexts_updated_t contexts_updated_new(const char *claim_id, const char *node_id, uint64_t version_hash, uint64_t created_at); void contexts_updated_delete(contexts_updated_t ctxs_updated); void contexts_updated_update_version_hash(contexts_updated_t ctxs_updated, uint64_t version_hash); void contexts_updated_add_ctx_update(contexts_updated_t ctxs_updated, struct context_updated *ctx_update); char *contexts_updated_2bin(contexts_updated_t ctxs_updated, size_t *len); #ifdef __cplusplus } #endif #endif /* ACLK_SCHEMA_WRAPPER_CONTEXT_H */