From Ronald Henderson: make "format_text()", on Windows, escape all
[obnox/wireshark/wip.git] / packet-fc.h
1 /* packet-fc.h
2  * Basic Fibre Channel Header definitions
3  * Copyright 2002 Dinesh G Dutt (ddutt@cisco.com)
4  *
5  * $Id: packet-fc.h,v 1.2 2002/12/10 02:49:31 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
10  * 
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifndef __PACKET_FC_H_
27 #define __PACKET_FC_H_
28
29 /* R_CTL upper bits creates a classification tree */
30 #define FC_RCTL_DEV_DATA       0x00
31 #define FC_RCTL_ELS            0x20
32 #define FC_RCTL_LINK_DATA      0x30
33 #define FC_RCTL_VIDEO          0x40
34 #define FC_RCTL_BLS            0x80
35 #define FC_RCTL_LINK_CTL       0xC0
36 /* XXX - is 0xF0 Extended Routing?  It is in the FC-FS draft on the T11
37    Web site. */
38
39 #define FC_TYPE_CMNSVC         0x0  /* Used in PRLI Svc Param Page */
40
41 /* TYPE definitions for Basic or Extended Link_Data */
42 #define FC_TYPE_ELS            0x1
43
44 /* TYPE definitions for FC-4 */
45 #define FC_TYPE_LLCSNAP        0x4
46 #define FC_TYPE_IP             0x5
47 #define FC_TYPE_SCSI           0x8
48 #define FC_TYPE_FCCT           0x20
49 #define FC_TYPE_SWILS          0x22
50 #define FC_TYPE_AL             0x23
51 #define FC_TYPE_SNMP           0x24
52
53 extern const value_string fc_fc4_val[];
54
55 /* DF_CTL bits */
56 #define FC_DFCTL_DH         0x03   /* Device_Header type bits: */
57 #define FC_DFCTL_DH_NONE    0x00   /* No Device_Header */
58 #define FC_DFCTL_DH_16_BYTE 0x01   /* 16 Byte Device_Header */
59 #define FC_DFCTL_DH_32_BYTE 0x02   /* 32 Byte Device_Header */
60 #define FC_DFCTL_DH_64_BYTE 0x03   /* 64 Byte Device_Header */
61 #define FC_DFCTL_AH         0x10   /* Association_Header bit */
62 #define FC_DFCTL_NH         0x20   /* Association_Header bit */
63 #define FC_DFCTL_SH         0x40   /* reserved for security header */
64
65 /* Derived Frame types (used for ULP demux) */
66 #define FC_FTYPE_UNDEF         0x0
67 #define FC_FTYPE_SWILS         0x1
68 #define FC_FTYPE_IP            0x2
69 #define FC_FTYPE_SCSI          0x3
70 #define FC_FTYPE_BLS           0x4
71 #define FC_FTYPE_ELS           0x5
72 #define FC_FTYPE_FCCT          0x7
73 #define FC_FTYPE_LINKDATA      0x8
74 #define FC_FTYPE_VDO           0x9
75 #define FC_FTYPE_LINKCTL       0xA
76 #define FC_FTYPE_SWILS_RSP     0xB
77
78 /* Well-known Address Definitions (in Network order) */
79 #define FC_WKA_MULTICAST       0xFFFFF5
80 #define FC_WKA_CLKSYNC         0xFFFFF6
81 #define FC_WKA_KEYDIST         0xFFFFF7
82 #define FC_WKA_ALIAS           0xFFFFF8
83 #define FC_WKA_QOSF            0xFFFFF9
84 #define FC_WKA_MGMT            0xFFFFFA
85 #define FC_WKA_TIME            0xFFFFFB
86 #define FC_WKA_DNS             0xFFFFFC
87 #define FC_WKA_FABRIC_CTRLR    0xFFFFFD
88 #define FC_WKA_FPORT           0xFFFFFE
89 #define FC_WKA_BCAST           0xFFFFFF
90
91 /* Well-known Address Definitions (in little endian) */
92
93 /* Information Categories for Link Data & Link Control Frames */
94 #define FC_IU_UNCATEGORIZED     0x0
95 #define FC_IU_SOLICITED_DATA    0x1
96 #define FC_IU_UNSOLICITED_CTL   0x2
97 #define FC_IU_SOLICITED_CTL     0x3
98 #define FC_IU_UNSOLICITED_DATA  0x4
99 #define FC_IU_DATA_DESCRIPTOR   0x5
100 #define FC_IU_UNSOLICITED_CMD   0x6
101 #define FC_IU_CMD_STATUS        0x7
102
103 #endif /* __PACKET_FC_H_ */