summaryrefslogtreecommitdiff
path: root/attrib/gatt.h
diff options
context:
space:
mode:
authorChen Ganir <chen.ganir@ti.com>2012-03-26 09:35:59 +0200
committerJohan Hedberg <johan.hedberg@intel.com>2012-03-26 12:18:00 +0300
commit1e064929b303cead29a85a108cbadfe93462c717 (patch)
tree6250f513bb94ef6e36df1ec290473969048a0dbc /attrib/gatt.h
parent48c82115a2739881877fa857390ff2eca4dc73e0 (diff)
downloadbluez-1e064929b303cead29a85a108cbadfe93462c717.tar.gz
GATT: Replace start/end with att_range
Use att_range struct instead of individual start/end handles in gatt_primary structure
Diffstat (limited to 'attrib/gatt.h')
-rw-r--r--attrib/gatt.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/attrib/gatt.h b/attrib/gatt.h
index cf3791453..1732270f5 100644
--- a/attrib/gatt.h
+++ b/attrib/gatt.h
@@ -27,8 +27,7 @@ typedef void (*gatt_cb_t) (GSList *l, guint8 status, gpointer user_data);
struct gatt_primary {
char uuid[MAX_LEN_UUID_STR + 1];
- uint16_t start;
- uint16_t end;
+ struct att_range range;
};
struct gatt_char {