Blob: set.h

Blob id: 2307218c4a0bb5af9ae8bd17e4841bfee89667c9

Size: 531 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 *
 *  BlueZ - Bluetooth protocol stack for Linux
 *
 *  Copyright (C) 2023  Intel Corporation
 *
 *
 */

#define BTD_DEVICE_SET_INTERFACE	"org.bluez.DeviceSet1"

struct btd_device_set;

struct btd_device_set *btd_set_add_device(struct btd_device *device,
						const uint8_t *ltk,
						const uint8_t sirk[16],
						uint8_t size);
bool btd_set_remove_device(struct btd_device_set *set,
						struct btd_device *device);
const char *btd_set_get_path(struct btd_device_set *set);