socket.h 427 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: LGPL-2.1-or-later */
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2013-2014 Intel Corporation. All rights reserved.
  7. *
  8. *
  9. */
  10. struct hal_sock_connect_signal {
  11. short size;
  12. uint8_t bdaddr[6];
  13. int channel;
  14. int status;
  15. } __attribute__((packed));
  16. void bt_socket_register(struct ipc *ipc, const bdaddr_t *addr, uint8_t mode);
  17. void bt_socket_unregister(void);