Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-lbtrm.h
1 /* packet-lbtrm.h
2  * Routines for LBT-RM 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_LBTRM_H_INCLUDED
14 #define PACKET_LBTRM_H_INCLUDED
15 
16 typedef struct
17 {
18  address source_address;
19  guint16 source_port;
20  guint32 session_id;
21  address multicast_group;
22  guint16 dest_port;
23  guint64 channel;
24  wmem_tree_t * frame;
25  lbm_transport_frame_t * last_frame;
26  lbm_transport_frame_t * last_data_frame;
27  lbm_transport_frame_t * last_sm_frame;
28  lbm_transport_frame_t * last_nak_frame;
29  lbm_transport_frame_t * last_ncf_frame;
30  wmem_tree_t * data_sqn;
31  wmem_tree_t * sm_sqn;
32  guint32 data_high_sqn;
33  guint32 sm_high_sqn;
35 
36 lbtrm_transport_t * lbtrm_transport_add(const address * source_address, guint16 source_port, guint32 session_id, const address * multicast_group, guint16 dest_port, guint32 frame);
37 char * lbtrm_transport_source_string(const address * source_address, guint16 source_port, guint32 session_id, const address * multicast_group, guint16 dest_port);
38 
39 #endif
40 
41 /*
42  * Editor modelines - https://www.wireshark.org/tools/modelines.html
43  *
44  * Local variables:
45  * c-basic-offset: 4
46  * tab-width: 8
47  * indent-tabs-mode: nil
48  * End:
49  *
50  * vi: set shiftwidth=4 tabstop=8 expandtab:
51  * :indentSize=4:tabSize=8:noTabs=true:
52  */
Definition: address.h:56
Definition: wmem_tree-int.h:48
Definition: packet-lbm.h:379
Definition: packet-lbtrm.h:17