⚝
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_stream.h
// SPDX-License-Identifier: GPL-3.0-or-later #ifndef ACLK_SCHEMA_WRAPPER_CONTEXT_STREAM_H #define ACLK_SCHEMA_WRAPPER_CONTEXT_STREAM_H #ifdef __cplusplus extern "C" { #endif struct stop_streaming_ctxs { char *claim_id; char *node_id; // we omit reason as there is only one defined at this point // as soon as there is more than one defined in StopStreaminContextsReason // we should add it // 0 - RATE_LIMIT_EXCEEDED }; struct stop_streaming_ctxs *parse_stop_streaming_ctxs(const char *data, size_t len); struct ctxs_checkpoint { char *claim_id; char *node_id; uint64_t version_hash; }; struct ctxs_checkpoint *parse_ctxs_checkpoint(const char *data, size_t len); #ifdef __cplusplus } #endif #endif /* ACLK_SCHEMA_WRAPPER_CONTEXT_STREAM_H */