Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-rsvp.h
1/* packet-rsvp.h
2 * Declarations of variables exported by "packet-rsvp.c"
3 *
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <[email protected]>
6 * Copyright 1998 Gerald Combs
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11#ifndef PACKET_RSVP_H
12#define PACKET_RSVP_H
13
14/* RSVP conversations support */
16{
17 uint8_t session_type;
18 address source;
19 address destination;
20 uint16_t udp_source_port;
21 uint16_t udp_dest_port;
22 uint8_t protocol;
23 uint32_t ext_tunnel_id;
24 uint64_t ext_tunnel_id_ipv6_pre;
25 uint64_t ext_tunnel_id_ipv6_post;
26 uint8_t dscp;
28
29extern const range_string gmpls_switching_type_rvals[];
30extern const range_string gmpls_lsp_enc_rvals[];
31extern const value_string gmpls_protection_cap_str[];
32extern value_string_ext gmpls_sonet_signal_type_str_ext;
33
34#endif
Definition address.h:56
Definition value_string.h:292
Definition value_string.h:169
Definition value_string.h:25
Definition packet-rsvp.h:16