Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-lbtru.h
1 /* packet-lbtru.h
2  * Routines for LBT-RU Packet dissection
3  *
4  * Copyright (c) 2005-2014 Informatica Corporation. All Rights Reserved.
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef PACKET_LBTRU_H_INCLUDED
14 #define PACKET_LBTRU_H_INCLUDED
15 
16 typedef struct
17 {
18  address source_address;
19  guint16 source_port;
20  guint32 session_id;
21  guint64 channel;
22  guint32 next_client_id;
23  wmem_list_t * client_list;
25 
26 typedef struct
27 {
28  address receiver_address;
29  guint16 receiver_port;
30  guint32 id;
31  lbtru_transport_t * transport;
32  wmem_tree_t * frame;
33  lbm_transport_frame_t * last_frame;
34  lbm_transport_frame_t * last_data_frame;
35  lbm_transport_frame_t * last_sm_frame;
36  lbm_transport_frame_t * last_nak_frame;
37  lbm_transport_frame_t * last_ncf_frame;
38  lbm_transport_frame_t * last_ack_frame;
39  lbm_transport_frame_t * last_creq_frame;
40  lbm_transport_frame_t * last_rst_frame;
41  wmem_tree_t * data_sqn;
42  wmem_tree_t * sm_sqn;
43  guint32 data_high_sqn;
44  guint32 sm_high_sqn;
46 
47 lbtru_transport_t * lbtru_transport_add(const address * source_address, guint16 source_port, guint32 session_id, guint32 frame);
48 char * lbtru_transport_source_string(const address * source_address, guint16 source_port, guint32 session_id);
49 
50 #endif
51 
52 /*
53  * Editor modelines - https://www.wireshark.org/tools/modelines.html
54  *
55  * Local variables:
56  * c-basic-offset: 4
57  * tab-width: 8
58  * indent-tabs-mode: nil
59  * End:
60  *
61  * vi: set shiftwidth=4 tabstop=8 expandtab:
62  * :indentSize=4:tabSize=8:noTabs=true:
63  */
Definition: address.h:56
Definition: wmem_list.c:23
Definition: wmem_tree-int.h:48
Definition: packet-lbm.h:379
Definition: packet-lbtru.h:27
Definition: packet-lbtru.h:17