From 054f044588ee84c300b11ef4d94ddc55fe170539 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 6 Nov 2008 16:12:16 -0300 Subject: Rename bt_string2class to bt_name2class and introduce bt_name2string. Since bt_string2class didn't work for UUID128 in string format the name got changed to be more suggestive. bt_name2string was introduced to prevent potential use of bt_string2uuid followed with bt_uuid2string which turns to do the same conversion twice. --- common/glib-helper.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'common/glib-helper.c') diff --git a/common/glib-helper.c b/common/glib-helper.c index 1812cc6d..17a8cb45 100644 --- a/common/glib-helper.c +++ b/common/glib-helper.c @@ -486,7 +486,7 @@ static struct { { } }; -uint16_t bt_string2class(const char *pattern) +uint16_t bt_name2class(const char *pattern) { int i; @@ -498,6 +498,20 @@ uint16_t bt_string2class(const char *pattern) return 0; } +char *bt_name2string(const char *pattern) +{ + uuid_t uuid; + uint16_t uuid16; + + uuid16 = bt_name2class(pattern); + if (!uuid16) + return NULL; + + sdp_uuid16_create(&uuid, uuid16); + + return bt_uuid2string(&uuid); +} + int bt_string2uuid(uuid_t *uuid, const char *string) { uint32_t data0, data4; @@ -530,7 +544,7 @@ int bt_string2uuid(uuid_t *uuid, const char *string) return 0; } else { - uint16_t class = bt_string2class(string); + uint16_t class = bt_name2class(string); if (class) { sdp_uuid16_create(uuid, class); return 0; -- cgit