2016-03-04 10:59:52 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "btstack_defines.h"
|
|
|
|
|
2022-03-11 21:15:38 +00:00
|
|
|
#if defined __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-03-04 10:59:52 +00:00
|
|
|
void sdp_parser_init(btstack_packet_handler_t callback);
|
|
|
|
void sdp_parser_handle_chunk(uint8_t * data, uint16_t size);
|
|
|
|
void sdp_parser_init_service_attribute_search(void);
|
|
|
|
void sdp_parser_init_service_search(void);
|
|
|
|
void sdp_parser_handle_service_search(uint8_t * data, uint16_t total_count, uint16_t record_handle_count);
|
|
|
|
|
2016-03-17 09:42:14 +00:00
|
|
|
void sdp_client_query_rfcomm_init(void);
|
2016-03-04 10:59:52 +00:00
|
|
|
|
|
|
|
void sdp_client_reset(void);
|
|
|
|
|
2022-03-11 21:15:38 +00:00
|
|
|
#if defined __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|