summaryrefslogtreecommitdiffstats
path: root/aclk/schema-wrappers/agent_cmds.h
diff options
context:
space:
mode:
Diffstat (limited to 'aclk/schema-wrappers/agent_cmds.h')
-rw-r--r--aclk/schema-wrappers/agent_cmds.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/aclk/schema-wrappers/agent_cmds.h b/aclk/schema-wrappers/agent_cmds.h
deleted file mode 100644
index 7e01f86c5..000000000
--- a/aclk/schema-wrappers/agent_cmds.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// SPDX-License-Identifier: GPL-3.0-or-later
-
-#ifndef ACLK_SCHEMA_WRAPPERS_AGENT_CMDS_H
-#define ACLK_SCHEMA_WRAPPERS_AGENT_CMDS_H
-
-#include "libnetdata/libnetdata.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct aclk_cancel_pending_req {
- char *request_id;
-
- struct timeval timestamp;
-
- char *trace_id;
-};
-
-int parse_cancel_pending_req(const char *msg, size_t msg_len, struct aclk_cancel_pending_req *req);
-void free_cancel_pending_req(struct aclk_cancel_pending_req *req);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* ACLK_SCHEMA_WRAPPERS_AGENT_CMDS_H */