2 * Routines for Juniper Networks, Inc. packet disassembly
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <gerald@wireshark.org>
6 * Copyright 1998 Gerald Combs
8 * SPDX-License-Identifier: GPL-2.0-or-later
11 #ifndef _PACKET_JUNIPER_H
12 #define _PACKET_JUNIPER_H
14 /* values < 200 are JUNOS internal proto values
15 * found in frames containing no link-layer header */
17 JUNIPER_PROTO_UNKNOWN
= 0,
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
39 #endif /* _PACKET_JUNIPER_H */
42 * Editor modelines - https://www.wireshark.org/tools/modelines.html
47 * indent-tabs-mode: nil
50 * vi: set shiftwidth=4 tabstop=8 expandtab:
51 * :indentSize=4:tabSize=8:noTabs=true: