1 /* packet-rsvp.h
2  * Declarations of variables exported by "packet-rsvp.c"
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
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 */
15 typedef struct rsvp_conversation_info
16 {
17     guint8 session_type;
18     address source;
19     address destination;
20     guint16 udp_source_port;
21     guint16 udp_dest_port;
22     guint8  protocol;
23     guint32 ext_tunnel_id;
24     guint64 ext_tunnel_id_ipv6_pre;
25     guint64 ext_tunnel_id_ipv6_post;
26     guint8 dscp;
27 } rsvp_conversation_info;
28 
29 extern const range_string gmpls_switching_type_rvals[];
30 extern const range_string gmpls_lsp_enc_rvals[];
31 extern const value_string gmpls_protection_cap_str[];
32 extern value_string_ext gmpls_sonet_signal_type_str_ext;
33 
34 #endif
35