Blame src/gatt-database.h

Packit 34410b
/*
Packit 34410b
 *
Packit 34410b
 *  BlueZ - Bluetooth protocol stack for Linux
Packit 34410b
 *
Packit 34410b
 *  Copyright (C) 2015  Google Inc.
Packit 34410b
 *
Packit 34410b
 *
Packit 34410b
 *  This program is free software; you can redistribute it and/or modify
Packit 34410b
 *  it under the terms of the GNU General Public License as published by
Packit 34410b
 *  the Free Software Foundation; either version 2 of the License, or
Packit 34410b
 *  (at your option) any later version.
Packit 34410b
 *
Packit 34410b
 *  This program is distributed in the hope that it will be useful,
Packit 34410b
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 34410b
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 34410b
 *  GNU General Public License for more details.
Packit 34410b
 *
Packit 34410b
 */
Packit 34410b
Packit 34410b
struct btd_gatt_database;
Packit 34410b
Packit 34410b
struct btd_gatt_database *btd_gatt_database_new(struct btd_adapter *adapter);
Packit 34410b
void btd_gatt_database_destroy(struct btd_gatt_database *database);
Packit 34410b
Packit 34410b
struct gatt_db *btd_gatt_database_get_db(struct btd_gatt_database *database);
Packit 34410b
void btd_gatt_database_att_disconnected(struct btd_gatt_database *database,
Packit 34410b
						struct btd_device *device);
Packit 34410b
void btd_gatt_database_server_connected(struct btd_gatt_database *database,
Packit 34410b
						struct bt_gatt_server *server);
Packit 34410b
Packit 34410b
void btd_gatt_database_restore_svc_chng_ccc(struct btd_gatt_database *database);