The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Jakub Pawlowski | 3b10fdd | 2017-09-18 09:00:20 -0700 | [diff] [blame] | 3 | * Copyright 1999-2012 Broadcom Corporation |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | * |
| 17 | ******************************************************************************/ |
| 18 | |
| 19 | /****************************************************************************** |
| 20 | * |
| 21 | * This file contains internally used SDP definitions |
| 22 | * |
| 23 | ******************************************************************************/ |
| 24 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 25 | #ifndef SDP_INT_H |
| 26 | #define SDP_INT_H |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 27 | |
Chris Manton | 5f080b9 | 2021-08-21 16:27:49 -0700 | [diff] [blame] | 28 | #include <cstdint> |
| 29 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 30 | #include "bt_target.h" |
Pavlin Radoslavov | 30698fa | 2015-12-04 17:36:34 -0800 | [diff] [blame] | 31 | #include "osi/include/alarm.h" |
Chris Manton | 0507402 | 2021-09-16 22:15:07 -0700 | [diff] [blame] | 32 | #include "stack/include/bt_hdr.h" |
Chris Manton | 5f080b9 | 2021-08-21 16:27:49 -0700 | [diff] [blame] | 33 | #include "stack/include/l2c_api.h" |
| 34 | #include "types/bluetooth/uuid.h" |
| 35 | #include "types/raw_address.h" |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 36 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 37 | /* Continuation length - we use a 2-byte offset */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 38 | #define SDP_CONTINUATION_LEN 2 |
| 39 | #define SDP_MAX_CONTINUATION_LEN 16 /* As per the spec */ |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 40 | |
| 41 | /* Timeout definitions. */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 42 | #define SDP_INACT_TIMEOUT_MS (30 * 1000) /* Inactivity timeout (in ms) */ |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 43 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 44 | /* Define the Protocol Data Unit (PDU) types. |
Jakub Pawlowski | 2238a88 | 2017-07-10 09:56:09 -0700 | [diff] [blame] | 45 | */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 46 | #define SDP_PDU_ERROR_RESPONSE 0x01 |
| 47 | #define SDP_PDU_SERVICE_SEARCH_REQ 0x02 |
| 48 | #define SDP_PDU_SERVICE_SEARCH_RSP 0x03 |
| 49 | #define SDP_PDU_SERVICE_ATTR_REQ 0x04 |
| 50 | #define SDP_PDU_SERVICE_ATTR_RSP 0x05 |
| 51 | #define SDP_PDU_SERVICE_SEARCH_ATTR_REQ 0x06 |
| 52 | #define SDP_PDU_SERVICE_SEARCH_ATTR_RSP 0x07 |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 53 | |
| 54 | /* Max UUIDs and attributes we support per sequence */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 55 | #define MAX_UUIDS_PER_SEQ 16 |
| 56 | #define MAX_ATTR_PER_SEQ 16 |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 57 | |
| 58 | /* Max length we support for any attribute */ |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 59 | #ifdef SDP_MAX_ATTR_LEN |
| 60 | #define MAX_ATTR_LEN SDP_MAX_ATTR_LEN |
| 61 | #else |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 62 | #define MAX_ATTR_LEN 256 |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 63 | #endif |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 64 | |
| 65 | /* Internal UUID sequence representation */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 66 | typedef struct { |
| 67 | uint16_t len; |
Jakub Pawlowski | 2238a88 | 2017-07-10 09:56:09 -0700 | [diff] [blame] | 68 | uint8_t value[bluetooth::Uuid::kNumBytes128]; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 69 | } tUID_ENT; |
| 70 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 71 | typedef struct { |
| 72 | uint16_t num_uids; |
| 73 | tUID_ENT uuid_entry[MAX_UUIDS_PER_SEQ]; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 74 | } tSDP_UUID_SEQ; |
| 75 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 76 | /* Internal attribute sequence definitions */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 77 | typedef struct { |
| 78 | uint16_t start; |
| 79 | uint16_t end; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 80 | } tATT_ENT; |
| 81 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 82 | typedef struct { |
| 83 | uint16_t num_attr; |
| 84 | tATT_ENT attr_entry[MAX_ATTR_PER_SEQ]; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 85 | } tSDP_ATTR_SEQ; |
| 86 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 87 | /* Define the attribute element of the SDP database record */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 88 | typedef struct { |
| 89 | uint32_t len; /* Number of bytes in the entry */ |
| 90 | uint8_t* value_ptr; /* Points to attr_pad */ |
| 91 | uint16_t id; |
| 92 | uint8_t type; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 93 | } tSDP_ATTRIBUTE; |
| 94 | |
| 95 | /* An SDP record consists of a handle, and 1 or more attributes */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 96 | typedef struct { |
| 97 | uint32_t record_handle; |
| 98 | uint32_t free_pad_ptr; |
| 99 | uint16_t num_attributes; |
| 100 | tSDP_ATTRIBUTE attribute[SDP_MAX_REC_ATTR]; |
| 101 | uint8_t attr_pad[SDP_MAX_PAD_LEN]; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 102 | } tSDP_RECORD; |
| 103 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 104 | /* Define the SDP database */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 105 | typedef struct { |
| 106 | uint32_t |
| 107 | di_primary_handle; /* Device ID Primary record or NULL if nonexistent */ |
| 108 | uint16_t num_records; |
| 109 | tSDP_RECORD record[SDP_MAX_RECORDS]; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 110 | } tSDP_DB; |
| 111 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 112 | /* Continuation information for the SDP server response */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 113 | typedef struct { |
| 114 | uint16_t next_attr_index; /* attr index for next continuation response */ |
| 115 | uint16_t next_attr_start_id; /* attr id to start with for the attr index in |
| 116 | next cont. response */ |
Chris Manton | b734c12 | 2021-09-17 18:34:58 -0700 | [diff] [blame] | 117 | const tSDP_RECORD* prev_sdp_rec; /* last sdp record that was completely sent |
| 118 | in the response */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 119 | bool last_attr_seq_desc_sent; /* whether attr seq length has been sent |
| 120 | previously */ |
| 121 | uint16_t attr_offset; /* offset within the attr to keep trak of partial |
| 122 | attributes in the responses */ |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 123 | } tSDP_CONT_INFO; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 124 | |
| 125 | /* Define the SDP Connection Control Block */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 126 | typedef struct { |
| 127 | #define SDP_STATE_IDLE 0 |
| 128 | #define SDP_STATE_CONN_SETUP 1 |
| 129 | #define SDP_STATE_CFG_SETUP 2 |
| 130 | #define SDP_STATE_CONNECTED 3 |
| 131 | uint8_t con_state; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 132 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 133 | #define SDP_FLAGS_IS_ORIG 0x01 |
| 134 | #define SDP_FLAGS_HIS_CFG_DONE 0x02 |
| 135 | #define SDP_FLAGS_MY_CFG_DONE 0x04 |
| 136 | uint8_t con_flags; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 137 | |
Jakub Pawlowski | d8e815c | 2017-06-24 17:30:18 -0700 | [diff] [blame] | 138 | RawAddress device_address; |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 139 | alarm_t* sdp_conn_timer; |
| 140 | uint16_t rem_mtu_size; |
| 141 | uint16_t connection_id; |
| 142 | uint16_t list_len; /* length of the response in the GKI buffer */ |
| 143 | uint8_t* rsp_list; /* pointer to GKI buffer holding response */ |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 144 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 145 | tSDP_DISCOVERY_DB* p_db; /* Database to save info into */ |
| 146 | tSDP_DISC_CMPL_CB* p_cb; /* Callback for discovery done */ |
| 147 | tSDP_DISC_CMPL_CB2* |
| 148 | p_cb2; /* Callback for discovery done piggy back with the user data */ |
Chris Manton | ca598e6 | 2021-09-17 17:59:31 -0700 | [diff] [blame] | 149 | const void* user_data; /* piggy back user data */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 150 | uint32_t |
| 151 | handles[SDP_MAX_DISC_SERVER_RECS]; /* Discovered server record handles */ |
| 152 | uint16_t num_handles; /* Number of server handles */ |
| 153 | uint16_t cur_handle; /* Current handle being processed */ |
| 154 | uint16_t transaction_id; |
| 155 | uint16_t disconnect_reason; /* Disconnect reason */ |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 156 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 157 | #define SDP_DISC_WAIT_CONN 0 |
| 158 | #define SDP_DISC_WAIT_HANDLES 1 |
| 159 | #define SDP_DISC_WAIT_ATTR 2 |
| 160 | #define SDP_DISC_WAIT_SEARCH_ATTR 3 |
| 161 | #define SDP_DISC_WAIT_CANCEL 5 |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 162 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 163 | uint8_t disc_state; |
| 164 | uint8_t is_attr_search; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 165 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 166 | uint16_t cont_offset; /* Continuation state data in the server response */ |
| 167 | tSDP_CONT_INFO cont_info; /* structure to hold continuation information for |
| 168 | the server response */ |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 169 | |
| 170 | } tCONN_CB; |
| 171 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 172 | /* The main SDP control block */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 173 | typedef struct { |
| 174 | tL2CAP_CFG_INFO l2cap_my_cfg; /* My L2CAP config */ |
| 175 | tCONN_CB ccb[SDP_MAX_CONNECTIONS]; |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 176 | tSDP_DB server_db; |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 177 | tL2CAP_APPL_INFO reg_info; /* L2CAP Registration info */ |
| 178 | uint16_t max_attr_list_size; /* Max attribute list size to use */ |
| 179 | uint16_t max_recs_per_search; /* Max records we want per seaarch */ |
| 180 | uint8_t trace_level; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 181 | } tSDP_CB; |
| 182 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 183 | /* Global SDP data */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 184 | extern tSDP_CB sdp_cb; |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 185 | |
Pavlin Radoslavov | 0c00b7d | 2016-10-14 19:34:48 -0700 | [diff] [blame] | 186 | /* Functions provided by sdp_main.cc */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 187 | extern void sdp_init(void); |
Pavlin Radoslavov | 50baa2c | 2018-01-11 17:28:16 -0800 | [diff] [blame] | 188 | extern void sdp_free(void); |
Chris Manton | e36a790 | 2021-03-15 17:14:10 -0700 | [diff] [blame] | 189 | extern void sdp_disconnect(tCONN_CB* p_ccb, tSDP_REASON reason); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 190 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 191 | extern void sdp_conn_timer_timeout(void* data); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 192 | |
Jakub Pawlowski | d8e815c | 2017-06-24 17:30:18 -0700 | [diff] [blame] | 193 | extern tCONN_CB* sdp_conn_originate(const RawAddress& p_bd_addr); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 194 | |
Pavlin Radoslavov | 0c00b7d | 2016-10-14 19:34:48 -0700 | [diff] [blame] | 195 | /* Functions provided by sdp_utils.cc |
Jakub Pawlowski | 2238a88 | 2017-07-10 09:56:09 -0700 | [diff] [blame] | 196 | */ |
Jack He | 3c162a8 | 2019-02-01 18:30:21 -0800 | [diff] [blame] | 197 | extern void sdpu_log_attribute_metrics(const RawAddress& bda, |
| 198 | tSDP_DISCOVERY_DB* p_db); |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 199 | extern tCONN_CB* sdpu_find_ccb_by_cid(uint16_t cid); |
Chris Manton | 8487890 | 2021-09-17 15:10:19 -0700 | [diff] [blame] | 200 | extern tCONN_CB* sdpu_find_ccb_by_db(const tSDP_DISCOVERY_DB* p_db); |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 201 | extern tCONN_CB* sdpu_allocate_ccb(void); |
| 202 | extern void sdpu_release_ccb(tCONN_CB* p_ccb); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 203 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 204 | extern uint8_t* sdpu_build_attrib_seq(uint8_t* p_out, uint16_t* p_attr, |
| 205 | uint16_t num_attrs); |
Chris Manton | b734c12 | 2021-09-17 18:34:58 -0700 | [diff] [blame] | 206 | extern uint8_t* sdpu_build_attrib_entry(uint8_t* p_out, |
| 207 | const tSDP_ATTRIBUTE* p_attr); |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 208 | extern void sdpu_build_n_send_error(tCONN_CB* p_ccb, uint16_t trans_num, |
| 209 | uint16_t error_code, char* p_error_text); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 210 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 211 | extern uint8_t* sdpu_extract_attr_seq(uint8_t* p, uint16_t param_len, |
| 212 | tSDP_ATTR_SEQ* p_seq); |
| 213 | extern uint8_t* sdpu_extract_uid_seq(uint8_t* p, uint16_t param_len, |
| 214 | tSDP_UUID_SEQ* p_seq); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 215 | |
Ted Wang | 2703ef6 | 2019-04-29 10:11:04 +0800 | [diff] [blame] | 216 | extern uint8_t* sdpu_get_len_from_type(uint8_t* p, uint8_t* p_end, uint8_t type, |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 217 | uint32_t* p_len); |
| 218 | extern bool sdpu_is_base_uuid(uint8_t* p_uuid); |
Chris Manton | 666e6e6 | 2021-09-17 19:56:01 -0700 | [diff] [blame] | 219 | extern bool sdpu_compare_uuid_arrays(const uint8_t* p_uuid1, uint32_t len1, |
| 220 | const uint8_t* p_uuid2, uint16_t len2); |
Jakub Pawlowski | 2238a88 | 2017-07-10 09:56:09 -0700 | [diff] [blame] | 221 | extern bool sdpu_compare_uuid_with_attr(const bluetooth::Uuid& uuid, |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 222 | tSDP_DISC_ATTR* p_attr); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 223 | |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 224 | extern void sdpu_sort_attr_list(uint16_t num_attr, tSDP_DISCOVERY_DB* p_db); |
| 225 | extern uint16_t sdpu_get_list_len(tSDP_UUID_SEQ* uid_seq, |
| 226 | tSDP_ATTR_SEQ* attr_seq); |
Chris Manton | b734c12 | 2021-09-17 18:34:58 -0700 | [diff] [blame] | 227 | extern uint16_t sdpu_get_attrib_seq_len(const tSDP_RECORD* p_rec, |
Chris Manton | 666e6e6 | 2021-09-17 19:56:01 -0700 | [diff] [blame] | 228 | const tSDP_ATTR_SEQ* attr_seq); |
Chris Manton | b734c12 | 2021-09-17 18:34:58 -0700 | [diff] [blame] | 229 | extern uint16_t sdpu_get_attrib_entry_len(const tSDP_ATTRIBUTE* p_attr); |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 230 | extern uint8_t* sdpu_build_partial_attrib_entry(uint8_t* p_out, |
Chris Manton | b734c12 | 2021-09-17 18:34:58 -0700 | [diff] [blame] | 231 | const tSDP_ATTRIBUTE* p_attr, |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 232 | uint16_t len, uint16_t* offset); |
Chris Manton | b734c12 | 2021-09-17 18:34:58 -0700 | [diff] [blame] | 233 | extern uint16_t sdpu_is_avrcp_profile_description_list( |
| 234 | const tSDP_ATTRIBUTE* p_attr); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 235 | |
Pavlin Radoslavov | 0c00b7d | 2016-10-14 19:34:48 -0700 | [diff] [blame] | 236 | /* Functions provided by sdp_db.cc |
Jakub Pawlowski | 2238a88 | 2017-07-10 09:56:09 -0700 | [diff] [blame] | 237 | */ |
Chris Manton | b734c12 | 2021-09-17 18:34:58 -0700 | [diff] [blame] | 238 | extern const tSDP_RECORD* sdp_db_service_search(const tSDP_RECORD* p_rec, |
Chris Manton | 666e6e6 | 2021-09-17 19:56:01 -0700 | [diff] [blame] | 239 | const tSDP_UUID_SEQ* p_seq); |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 240 | extern tSDP_RECORD* sdp_db_find_record(uint32_t handle); |
Chris Manton | b734c12 | 2021-09-17 18:34:58 -0700 | [diff] [blame] | 241 | extern const tSDP_ATTRIBUTE* sdp_db_find_attr_in_rec(const tSDP_RECORD* p_rec, |
| 242 | uint16_t start_attr, |
| 243 | uint16_t end_attr); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 244 | |
Pavlin Radoslavov | 0c00b7d | 2016-10-14 19:34:48 -0700 | [diff] [blame] | 245 | /* Functions provided by sdp_server.cc |
Jakub Pawlowski | 2238a88 | 2017-07-10 09:56:09 -0700 | [diff] [blame] | 246 | */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 247 | extern void sdp_server_handle_client_req(tCONN_CB* p_ccb, BT_HDR* p_msg); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 248 | |
Pavlin Radoslavov | 0c00b7d | 2016-10-14 19:34:48 -0700 | [diff] [blame] | 249 | /* Functions provided by sdp_discovery.cc |
Jakub Pawlowski | 2238a88 | 2017-07-10 09:56:09 -0700 | [diff] [blame] | 250 | */ |
Myles Watson | f8a2120 | 2016-11-28 16:44:40 -0800 | [diff] [blame] | 251 | extern void sdp_disc_connected(tCONN_CB* p_ccb); |
| 252 | extern void sdp_disc_server_rsp(tCONN_CB* p_ccb, BT_HDR* p_msg); |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 253 | |
The Android Open Source Project | 624a787 | 2012-12-12 16:00:35 -0800 | [diff] [blame] | 254 | #endif |