mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-15 08:14:28 +08:00
4284184d00
This patch adds SPDX License Identifier and removes the license text. ------------------------------------- License COUNT ------------------------------------- GPL-2.0-or-later : 13 License: GPL-2.0-or-later attrib/att-database.h attrib/gattrib.h attrib/gatttool.h attrib/gatt-service.c attrib/interactive.c attrib/utils.c attrib/gatt.c attrib/gattrib.c attrib/gatt-service.h attrib/att.c attrib/gatt.h attrib/att.h attrib/gatttool.c
18 lines
486 B
C
18 lines
486 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2011 Nokia Corporation
|
|
*
|
|
*
|
|
*/
|
|
|
|
int interactive(const char *src, const char *dst, const char *dst_type,
|
|
int psm);
|
|
GIOChannel *gatt_connect(const char *src, const char *dst,
|
|
const char *dst_type, const char *sec_level,
|
|
int psm, int mtu, BtIOConnect connect_cb,
|
|
GError **gerr);
|
|
size_t gatt_attr_data_from_string(const char *str, uint8_t **data);
|