The structure that contains the SDP record.
Synopsis:
typedef struct {
int num_classId ;
bt_sdp_class_t * classId ;
char * serviceId ;
char * name ;
char * description ;
char * provider ;
char * availability ;
char * record_handle ;
int num_protocol ;
bt_sdp_prot_t * protocol ;
int num_language ;
bt_sdp_lang_t * language ;
}bt_sdp_record_t;
Data:
- int num_classId
- The number of elements in the variable-length array of the service class UUID.
- bt_sdp_class_t * classId
- The variable-length array of the service class UUID.
- char * serviceId
- The service UUID.
- char * name
- The service name.
- char * description
- The service description.
- char * provider
- The service provider name.
- char * availability
- The service availability.
- char * record_handle
- The handle to the service record.
- int num_protocol
- The number of elements in the variable-length array of the service protocol.
- bt_sdp_prot_t * protocol
- The variable-length array of service protocols.
- int num_language
- The number of elements in the variable-length array of the service language.
- bt_sdp_lang_t * language
- The variable-length array of the service language.
Library:
libbtapi (For the qcc command, use the -l btapi option to link against this library)
Description: