Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
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 <[email protected]>
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
16typedef struct
17{
18 address source_address;
19 uint16_t source_port;
20 uint32_t session_id;
21 uint64_t channel;
22 uint32_t next_client_id;
23 wmem_list_t * client_list;
25
26typedef struct
27{
28 address receiver_address;
29 uint16_t receiver_port;
30 uint32_t 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 uint32_t data_high_sqn;
44 uint32_t sm_high_sqn;
46
47lbtru_transport_t * lbtru_transport_add(const address * source_address, uint16_t source_port, uint32_t session_id, uint32_t frame);
48char * lbtru_transport_source_string(const address * source_address, uint16_t source_port, uint32_t 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:381
Definition packet-lbtru.h:27
Definition packet-lbtru.h:17