Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-juniper.h
1/* packet-juniper.h
2 * Routines for Juniper Networks, Inc. packet disassembly
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_JUNIPER_H
12#define _PACKET_JUNIPER_H
13
14/* values < 200 are JUNOS internal proto values
15 * found in frames containing no link-layer header */
16enum {
17 JUNIPER_PROTO_UNKNOWN = 0,
18 JUNIPER_PROTO_IP = 2,
19 JUNIPER_PROTO_MPLS_IP = 3,
20 JUNIPER_PROTO_IP_MPLS = 4,
21 JUNIPER_PROTO_MPLS = 5,
22 JUNIPER_PROTO_IP6 = 6,
23 JUNIPER_PROTO_MPLS_IP6 = 7,
24 JUNIPER_PROTO_IP6_MPLS = 8,
25 JUNIPER_PROTO_CLNP = 10,
26 JUNIPER_PROTO_CLNP_MPLS = 32,
27 JUNIPER_PROTO_MPLS_CLNP = 33,
28 JUNIPER_PROTO_PPP = 200,
29 JUNIPER_PROTO_ISO = 201,
30 JUNIPER_PROTO_LLC = 202,
31 JUNIPER_PROTO_LLC_SNAP = 203,
32 JUNIPER_PROTO_ETHER = 204,
33 JUNIPER_PROTO_OAM = 205,
34 JUNIPER_PROTO_Q933 = 206,
35 JUNIPER_PROTO_FRELAY = 207,
36 JUNIPER_PROTO_CHDLC = 208
37};
38
39#endif /* _PACKET_JUNIPER_H */
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 */