aclk_rx_msgs.h 458 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef ACLK_RX_MSGS_H
  3. #define ACLK_RX_MSGS_H
  4. #include "daemon/common.h"
  5. #include "libnetdata/libnetdata.h"
  6. int aclk_handle_cloud_cmd_message(char *payload);
  7. #ifdef ENABLE_NEW_CLOUD_PROTOCOL
  8. const char *rx_handler_get_name(size_t i);
  9. unsigned int aclk_init_rx_msg_handlers(void);
  10. void aclk_handle_new_cloud_msg(const char *message_type, const char *msg, size_t msg_len);
  11. #endif
  12. #endif /* ACLK_RX_MSGS_H */