summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-01-03 21:03:23 +0000
committerMarcel Holtmann <marcel@holtmann.org>2006-01-03 21:03:23 +0000
commitb27690df2da69d959a78d95483217a0a5c529cfb (patch)
tree25d51ec78cfef315d99f7440e0182c9312742fd4
parenta0de58e012d1d85dcbef1c52eb082ea6c8a8e9de (diff)
Add UUID for Apple Macintosh Attributes
-rw-r--r--tools/sdptool.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/sdptool.c b/tools/sdptool.c
index 39583530..ea4e4d3d 100644
--- a/tools/sdptool.c
+++ b/tools/sdptool.c
@@ -2438,6 +2438,9 @@ static int add_pcsuite(sdp_session_t *session, svc_info_t *si)
static unsigned char ngage_uuid[] = { 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x10, 0x00,
0x80, 0x00, 0x00, 0x02, 0xEE, 0x00, 0x00, 0x01 };
+static unsigned char apple_uuid[] = { 0xf0, 0x72, 0x2e, 0x20, 0x0f, 0x8b, 0x4e, 0x90,
+ 0x8c, 0xc2, 0x1b, 0x46, 0xf5, 0xf2, 0xef, 0xe2 };
+
struct {
char *name;
uint16_t class;
@@ -2478,6 +2481,7 @@ struct {
{ "NOKID", 0, add_nokiaid, nokid_uuid },
{ "PCSUITE", 0, add_pcsuite, pcsuite_uuid },
{ "NGAGE", 0, NULL, ngage_uuid },
+ { "APPLE", 0, NULL, apple_uuid },
{ 0 }
};