3 * Protocol IDs for Amateur Packet Radio protocol dissection
4 * Copyright 2005,2006,2007,2008,2009,2010,2012 R.W. Stearn <richard@rns-stearn.demon.co.uk>
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1998 Gerald Combs
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #ifndef __AX25_PIDS_H__
28 #define __AX25_PIDS_H__
30 /* AX.25 Layer 3 Protocol ID's (pid) */
31 #define AX25_P_ROSE 0x01 /* ISO 8208 / CCITT X.25 PLP */
32 #define AX25_P_RFC1144C 0x06 /* Compressed TCP/IP packet. Van Jacobson RFC1144 */
33 #define AX25_P_RFC1144 0x07 /* Uncompressed TCP/IP packet. Van Jacobson RFC1144 */
34 #define AX25_P_SEGMENT 0x08 /* segmentation fragment */
35 #define AX25_P_TEXNET 0xC3 /* TEXNET datagram */
36 #define AX25_P_LCP 0xC4 /* Link Quality Protocol */
37 #define AX25_P_ATALK 0xCA /* AppleTalk */
38 #define AX25_P_ATALKARP 0xCB /* AppleTalk ARP */
39 #define AX25_P_IP 0xCC /* ARPA Internet Protocol */
40 #define AX25_P_ARP 0xCD /* ARPA Address Resolution Protocol */
41 #define AX25_P_FLEXNET 0xCE /* FlexNet */
42 #define AX25_P_NETROM 0xCF /* NET/ROM */
43 #define AX25_P_NO_L3 0xF0 /* No layer 3 protocol */
44 #define AX25_P_L3_ESC 0xFF /* Escape character. Next octet contains more layer 3 protocol info */
46 #endif /* __AX25_PIDS_H__ */