summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-03-05 19:30:32 +0000
committerMarcel Holtmann <marcel@holtmann.org>2008-03-05 19:30:32 +0000
commitf767416e71484be2463caa6482dc978e165cabae (patch)
treee20fee22f13019cfea3cdfaa5be98660cbbf1e83
parent5ab165a4d37a0fd2893f70a59318fa0bdf066324 (diff)
Add support for MCAP UUIDs
-rw-r--r--include/sdp.h2
-rw-r--r--src/sdp.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/include/sdp.h b/include/sdp.h
index 293e6ec8..dd5b0e24 100644
--- a/include/sdp.h
+++ b/include/sdp.h
@@ -69,6 +69,8 @@ extern "C" {
#define AVDTP_UUID 0x0019
#define CMTP_UUID 0x001b
#define UDI_UUID 0x001d
+#define MCAP_CTRL_UUID 0x001e
+#define MCAP_DATA_UUID 0x001f
#define L2CAP_UUID 0x0100
/*
diff --git a/src/sdp.c b/src/sdp.c
index 3b1a5d93..44ba17e4 100644
--- a/src/sdp.c
+++ b/src/sdp.c
@@ -124,6 +124,8 @@ static struct tupla Protocol[] = {
{ AVDTP_UUID, "AVDTP" },
{ CMTP_UUID, "CMTP" },
{ UDI_UUID, "UDI" },
+ { MCAP_CTRL_UUID, "MCAP-Ctrl" },
+ { MCAP_DATA_UUID, "MCAP-Data" },
{ L2CAP_UUID, "L2CAP" },
{ 0 }
};