diff options
| -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 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 }  }; | 
