summaryrefslogtreecommitdiff
path: root/src/service.h
diff options
context:
space:
mode:
authorArman Uguray <armansito@chromium.org>2015-01-13 19:31:04 -0800
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2015-01-16 16:08:43 +0200
commit31a3efd65921b54bce1dafc00c4d8f1589d6cc23 (patch)
treef2287f7658f5d013fd510f95a54cb889c308884c /src/service.h
parent79beb1c6ac0b83787432201e4c70258b896de0b7 (diff)
downloadbluez-31a3efd65921b54bce1dafc00c4d8f1589d6cc23.tar.gz
core/service: Remove GATT handle logic
This patch reverts the recent addition of GATT service handles to btd_service.
Diffstat (limited to 'src/service.h')
-rw-r--r--src/service.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/service.h b/src/service.h
index 3a0db6eed..c1f97f657 100644
--- a/src/service.h
+++ b/src/service.h
@@ -44,10 +44,6 @@ void btd_service_unref(struct btd_service *service);
/* Service management functions used by the core */
struct btd_service *service_create(struct btd_device *device,
struct btd_profile *profile);
-struct btd_service *service_create_gatt(struct btd_device *device,
- struct btd_profile *profile,
- uint16_t start_handle,
- uint16_t end_handle);
int service_probe(struct btd_service *service);
void service_remove(struct btd_service *service);
@@ -63,9 +59,6 @@ struct btd_device *btd_service_get_device(const struct btd_service *service);
struct btd_profile *btd_service_get_profile(const struct btd_service *service);
btd_service_state_t btd_service_get_state(const struct btd_service *service);
int btd_service_get_error(const struct btd_service *service);
-bool btd_service_get_gatt_handles(const struct btd_service *service,
- uint16_t *start_handle,
- uint16_t *end_handle);
unsigned int btd_service_add_state_cb(btd_service_state_cb cb,
void *user_data);