From 002070cf4c87604d9813c1329cc93e3f74940dd6 Mon Sep 17 00:00:00 2001 From: Michael Janssen Date: Fri, 31 Oct 2014 11:14:53 -0700 Subject: attrib: remove g_attrib_is_encrypted This function is only used in one place and encryption is the responsibility of the channel, not the attribute. --- attrib/gattrib.c | 12 ------------ attrib/gattrib.h | 2 -- 2 files changed, 14 deletions(-) (limited to 'attrib') diff --git a/attrib/gattrib.c b/attrib/gattrib.c index a6511a2ab..a65d1ca22 100644 --- a/attrib/gattrib.c +++ b/attrib/gattrib.c @@ -690,18 +690,6 @@ static int event_cmp_by_id(gconstpointer a, gconstpointer b) return evt->id - id; } -gboolean g_attrib_is_encrypted(GAttrib *attrib) -{ - BtIOSecLevel sec_level; - - if (!bt_io_get(attrib->io, NULL, - BT_IO_OPT_SEC_LEVEL, &sec_level, - BT_IO_OPT_INVALID)) - return FALSE; - - return sec_level > BT_IO_SEC_LOW; -} - gboolean g_attrib_unregister(GAttrib *attrib, guint id) { struct event *evt; diff --git a/attrib/gattrib.h b/attrib/gattrib.h index 99b8b375d..1557b9991 100644 --- a/attrib/gattrib.h +++ b/attrib/gattrib.h @@ -62,8 +62,6 @@ guint g_attrib_register(GAttrib *attrib, guint8 opcode, guint16 handle, GAttribNotifyFunc func, gpointer user_data, GDestroyNotify notify); -gboolean g_attrib_is_encrypted(GAttrib *attrib); - uint8_t *g_attrib_get_buffer(GAttrib *attrib, size_t *len); gboolean g_attrib_set_mtu(GAttrib *attrib, int mtu); -- cgit v1.2.1