blob: d08c03306c544b399865dd255dd8be0fd03af02d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/* packet-diffserv-mpls-common.h
* Routines for the common part of Diffserv MPLS signaling protocols
* Author: Endoh Akira (endoh@netmarks.co.jp)
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_DSMPLS_H__
#define __PACKET_DSMPLS_H__
#define PHBID_DSCP_MASK 0xFC00
#define PHBID_CODE_MASK 0xFFF0
#define PHBID_BIT14_MASK 2
#define PHBID_BIT15_MASK 1
#define MAPNB_DESCRIPTION "Number of MAP entries"
#define MAP_DESCRIPTION "MAP entry"
#define EXP_DESCRIPTION "EXP bit code"
#define PHBID_DESCRIPTION "PHBID"
#define PHBID_DSCP_DESCRIPTION "DSCP"
#define PHBID_CODE_DESCRIPTION "PHB id code"
#define PHBID_BIT14_DESCRIPTION "Bit 14"
#define PHBID_BIT15_DESCRIPTION "Bit 15"
extern const value_string phbid_bit14_vals[];
extern const value_string phbid_bit15_vals[];
void
dissect_diffserv_mpls_common(tvbuff_t *tvb, proto_tree *tree, int type,
int offset, int **hfindexes, gint **etts);
#endif
|