diff --git a/tools/sdptool.c b/tools/sdptool.c
index aea4954..1a89245 100644
--- a/tools/sdptool.c
+++ b/tools/sdptool.c
{ 0x302, "Remote audio volume control", NULL, 0 },
};
+/* Name of the various GOEP attributes. See BT assigned numbers */
+static struct attrib_def goep_attrib_names[] = {
+ { 0x200, "GoepL2capPsm", NULL, 0 },
+};
+
/* Same for the UUIDs. See BT assigned numbers */
static struct uuid_def uuid16_names[] = {
/* -- Protocols -- */
{ 0x1102, "LANAccessUsingPPP", NULL, 0 },
{ 0x1103, "DialupNetworking (DUN)", NULL, 0 },
{ 0x1104, "IrMCSync", NULL, 0 },
- { 0x1105, "OBEXObjectPush", NULL, 0 },
- { 0x1106, "OBEXFileTransfer", NULL, 0 },
+ { 0x1105, "OBEXObjectPush",
+ goep_attrib_names, sizeof(goep_attrib_names)/sizeof(struct attrib_def) },
+ { 0x1106, "OBEXFileTransfer",
+ goep_attrib_names, sizeof(goep_attrib_names)/sizeof(struct attrib_def) },
{ 0x1107, "IrMCSyncCommand", NULL, 0 },
{ 0x1108, "Headset",
audio_attrib_names, sizeof(audio_attrib_names)/sizeof(struct attrib_def) },