diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2006-01-03 15:26:43 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2006-01-03 15:26:43 +0000 |
commit | a0de58e012d1d85dcbef1c52eb082ea6c8a8e9de (patch) | |
tree | ee6088862fb63a4c9fad14a81fd2b8fbe79b87e0 /tools/sdptool.c | |
parent | 4fe03a99ce951164c711e7f2146f2bee6df44c64 (diff) |
Add UUID for N-Gage games
Diffstat (limited to 'tools/sdptool.c')
-rw-r--r-- | tools/sdptool.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/sdptool.c b/tools/sdptool.c index 8749e0b5..39583530 100644 --- a/tools/sdptool.c +++ b/tools/sdptool.c @@ -2435,6 +2435,9 @@ static int add_pcsuite(sdp_session_t *session, svc_info_t *si) return 0; } +static unsigned char ngage_uuid[] = { 0x00, 0x00, 0x13, 0x01, 0x00, 0x00, 0x10, 0x00, + 0x80, 0x00, 0x00, 0x02, 0xEE, 0x00, 0x00, 0x01 }; + struct { char *name; uint16_t class; @@ -2474,6 +2477,7 @@ struct { { "PALMOS", 0, add_palmos, palmos_uuid }, { "NOKID", 0, add_nokiaid, nokid_uuid }, { "PCSUITE", 0, add_pcsuite, pcsuite_uuid }, + { "NGAGE", 0, NULL, ngage_uuid }, { 0 } }; |