cfgcli.h 565 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: LGPL-2.1-or-later */
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  7. *
  8. *
  9. */
  10. struct mesh_group {
  11. uint16_t addr;
  12. uint8_t label[16];
  13. };
  14. typedef bool (*key_send_func_t) (void *user_data, uint16_t dst,
  15. uint16_t idx, bool is_appkey, bool update);
  16. typedef void (*delete_remote_func_t) (uint16_t primary, uint8_t ele_cnt);
  17. struct model_info *cfgcli_init(key_send_func_t key_func,
  18. delete_remote_func_t del_node, void *user_data);
  19. void cfgcli_cleanup(void);