Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
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 <[email protected]>
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
16typedef struct
17{
18 address source_address;
19 uint16_t source_port;
20 uint32_t session_id;
21 address multicast_group;
22 uint16_t dest_port;
23 uint64_t 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 uint32_t data_high_sqn;
33 uint32_t sm_high_sqn;
35
36lbtrm_transport_t * lbtrm_transport_add(const address * source_address, uint16_t source_port, uint32_t session_id, const address * multicast_group, uint16_t dest_port, uint32_t frame);
37char * lbtrm_transport_source_string(const address * source_address, uint16_t source_port, uint32_t session_id, const address * multicast_group, uint16_t 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:381
Definition packet-lbtrm.h:17