Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-btbredr_rf.h
1/* packet-btbredr_rf.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
5 * Copyright 1998 Gerald Combs
6 *
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
9
10typedef struct _reassembly_t {
11 unsigned segment_len_rem;
12 uint32_t l2cap_index;
13 unsigned seqn : 1;
15
16typedef struct _connection_info_t {
17 reassembly_t reassembly[2];
18 nstime_t timestamp;
19 uint32_t btclock;
20 uint32_t interface_id;
21 uint32_t adapter_id;
22 uint16_t escosize[2];
23 uint8_t bd_addr[2][6];
24 uint8_t lt_addr;
25 uint8_t escohandle;
26 uint8_t esco : 1;
28
30btbredr_rf_add_esco_link(connection_info_t *cinfo, packet_info *pinfo, uint8_t handle, uint32_t ltaddr, uint16_t pktszms, uint16_t pktszsm);
31
32void
33btbredr_rf_remove_esco_link(connection_info_t *cinfo, packet_info *pinfo, uint8_t handle);
Definition packet-btbredr_rf.h:16
Definition packet_info.h:43
Definition packet-btbredr_rf.h:10
Definition nstime.h:26