Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-btbredr_rf.h
blob52d7d977f0e52653991534306291f0763f788019
1 /* packet-btbredr_rf.h
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 typedef struct _reassembly_t {
11 unsigned segment_len_rem;
12 uint32_t l2cap_index;
13 unsigned seqn : 1;
14 } reassembly_t;
16 typedef 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;
27 } connection_info_t;
29 connection_info_t *
30 btbredr_rf_add_esco_link(connection_info_t *cinfo, packet_info *pinfo, uint8_t handle, uint32_t ltaddr, uint16_t pktszms, uint16_t pktszsm);
32 void
33 btbredr_rf_remove_esco_link(connection_info_t *cinfo, packet_info *pinfo, uint8_t handle);