1*7836SJohn.Forte@Sun.COM /* 2*7836SJohn.Forte@Sun.COM * CDDL HEADER START 3*7836SJohn.Forte@Sun.COM * 4*7836SJohn.Forte@Sun.COM * The contents of this file are subject to the terms of the 5*7836SJohn.Forte@Sun.COM * Common Development and Distribution License (the "License"). 6*7836SJohn.Forte@Sun.COM * You may not use this file except in compliance with the License. 7*7836SJohn.Forte@Sun.COM * 8*7836SJohn.Forte@Sun.COM * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*7836SJohn.Forte@Sun.COM * or http://www.opensolaris.org/os/licensing. 10*7836SJohn.Forte@Sun.COM * See the License for the specific language governing permissions 11*7836SJohn.Forte@Sun.COM * and limitations under the License. 12*7836SJohn.Forte@Sun.COM * 13*7836SJohn.Forte@Sun.COM * When distributing Covered Code, include this CDDL HEADER in each 14*7836SJohn.Forte@Sun.COM * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*7836SJohn.Forte@Sun.COM * If applicable, add the following below this CDDL HEADER, with the 16*7836SJohn.Forte@Sun.COM * fields enclosed by brackets "[]" replaced with your own identifying 17*7836SJohn.Forte@Sun.COM * information: Portions Copyright [yyyy] [name of copyright owner] 18*7836SJohn.Forte@Sun.COM * 19*7836SJohn.Forte@Sun.COM * CDDL HEADER END 20*7836SJohn.Forte@Sun.COM */ 21*7836SJohn.Forte@Sun.COM 22*7836SJohn.Forte@Sun.COM /* 23*7836SJohn.Forte@Sun.COM * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24*7836SJohn.Forte@Sun.COM * Use is subject to license terms. 25*7836SJohn.Forte@Sun.COM */ 26*7836SJohn.Forte@Sun.COM 27*7836SJohn.Forte@Sun.COM #ifndef _ISNS_PROTOCOL_H 28*7836SJohn.Forte@Sun.COM #define _ISNS_PROTOCOL_H 29*7836SJohn.Forte@Sun.COM 30*7836SJohn.Forte@Sun.COM #ifdef __cplusplus 31*7836SJohn.Forte@Sun.COM extern "C" { 32*7836SJohn.Forte@Sun.COM #endif 33*7836SJohn.Forte@Sun.COM 34*7836SJohn.Forte@Sun.COM #include <netinet/in.h> 35*7836SJohn.Forte@Sun.COM #include <sys/socket.h> 36*7836SJohn.Forte@Sun.COM #include <sys/types.h> 37*7836SJohn.Forte@Sun.COM 38*7836SJohn.Forte@Sun.COM #define ISNSP_VERSION (0x01) 39*7836SJohn.Forte@Sun.COM 40*7836SJohn.Forte@Sun.COM #define ISNS_DEFAULT_SERVER_PORT (3205) 41*7836SJohn.Forte@Sun.COM 42*7836SJohn.Forte@Sun.COM #define ISNSP_HEADER_SIZE (12) 43*7836SJohn.Forte@Sun.COM #define ISNSP_RSP_CODE_SIZE (4) 44*7836SJohn.Forte@Sun.COM #define ISNSP_MAX_PAYLOAD_SIZE (65532) 45*7836SJohn.Forte@Sun.COM #define ISNSP_MAX_PDU_SIZE (ISNSP_HEADER_SIZE + \ 46*7836SJohn.Forte@Sun.COM ISNSP_MAX_PAYLOAD_SIZE) 47*7836SJohn.Forte@Sun.COM 48*7836SJohn.Forte@Sun.COM #define ISNS_TLV_ATTR_ID_LEN (4) 49*7836SJohn.Forte@Sun.COM #define ISNS_TLV_ATTR_LEN_LEN (4) 50*7836SJohn.Forte@Sun.COM #define MAX_ISNS_MESG_ATTR_ENTRIES (8) 51*7836SJohn.Forte@Sun.COM #define MAX_ISNS_OPER_ATTR_ENTRIES (32) 52*7836SJohn.Forte@Sun.COM 53*7836SJohn.Forte@Sun.COM /* iSNS Entity Protocol, iSNS Draft - section 6.2.2. */ 54*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_PROTOCOL_NO (1) 55*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_PROTOCOL_ISCSI (2) 56*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_PROTOCOL_FCP (3) 57*7836SJohn.Forte@Sun.COM 58*7836SJohn.Forte@Sun.COM /* iSNS Function IDs, iSNS Draft - section 4.1.3. */ 59*7836SJohn.Forte@Sun.COM #define ISNS_DEV_ATTR_REG (0x0001) 60*7836SJohn.Forte@Sun.COM #define ISNS_DEV_ATTR_QRY (0x0002) 61*7836SJohn.Forte@Sun.COM #define ISNS_DEV_GET_NEXT (0x0003) 62*7836SJohn.Forte@Sun.COM #define ISNS_DEV_DEREG (0x0004) 63*7836SJohn.Forte@Sun.COM #define ISNS_SCN_REG (0x0005) 64*7836SJohn.Forte@Sun.COM #define ISNS_SCN_DEREG (0x0006) 65*7836SJohn.Forte@Sun.COM #define ISNS_SCN_EVENT (0x0007) 66*7836SJohn.Forte@Sun.COM #define ISNS_SCN (0x0008) 67*7836SJohn.Forte@Sun.COM #define ISNS_DD_REG (0x0009) 68*7836SJohn.Forte@Sun.COM #define ISNS_DD_DEREG (0x000A) 69*7836SJohn.Forte@Sun.COM #define ISNS_DDS_REG (0x000B) 70*7836SJohn.Forte@Sun.COM #define ISNS_DDS_DEREG (0x000C) 71*7836SJohn.Forte@Sun.COM #define ISNS_ESI (0x000D) 72*7836SJohn.Forte@Sun.COM #define ISNS_HEARTBEAT (0x000E) 73*7836SJohn.Forte@Sun.COM #define ISNS_DEV_ATTR_REG_RSP (0x8001) 74*7836SJohn.Forte@Sun.COM #define ISNS_DEV_ATTR_QRY_RSP (0x8002) 75*7836SJohn.Forte@Sun.COM #define ISNS_DEV_GET_NEXT_RSP (0x8003) 76*7836SJohn.Forte@Sun.COM #define ISNS_DEV_DEREG_RSP (0x8004) 77*7836SJohn.Forte@Sun.COM #define ISNS_SCN_REG_RSP (0x8005) 78*7836SJohn.Forte@Sun.COM #define ISNS_SCN_DEREG_RSP (0x8006) 79*7836SJohn.Forte@Sun.COM #define ISNS_SCN_EVENT_RSP (0x8007) 80*7836SJohn.Forte@Sun.COM #define ISNS_SCN_RSP (0x8008) 81*7836SJohn.Forte@Sun.COM #define ISNS_DD_REG_RSP (0x8009) 82*7836SJohn.Forte@Sun.COM #define ISNS_DD_DEREG_RSP (0x800A) 83*7836SJohn.Forte@Sun.COM #define ISNS_DDS_REG_RSP (0x800B) 84*7836SJohn.Forte@Sun.COM #define ISNS_DDS_DEREG_RSP (0x800C) 85*7836SJohn.Forte@Sun.COM #define ISNS_ESI_RSP (0x800D) 86*7836SJohn.Forte@Sun.COM 87*7836SJohn.Forte@Sun.COM /* iSNS Flags, iSNS Draft - section 5.1.4. */ 88*7836SJohn.Forte@Sun.COM #define ISNS_FLAG_FIRST_PDU (0x0400) 89*7836SJohn.Forte@Sun.COM #define ISNS_FLAG_LAST_PDU (0x0800) 90*7836SJohn.Forte@Sun.COM #define ISNS_FLAG_REPLACE_REG (0x1000) 91*7836SJohn.Forte@Sun.COM #define ISNS_FLAG_AUTH_BLK_PRESENTED (0x2000) 92*7836SJohn.Forte@Sun.COM #define ISNS_FLAG_SERVER (0x4000) 93*7836SJohn.Forte@Sun.COM #define ISNS_FLAG_CLIENT (0x8000) 94*7836SJohn.Forte@Sun.COM 95*7836SJohn.Forte@Sun.COM /* iSNS Response Status, iSNS Draft - section 5.4 */ 96*7836SJohn.Forte@Sun.COM #define ISNS_RSP_SUCCESSFUL (0) 97*7836SJohn.Forte@Sun.COM #define ISNS_RSP_UNKNOWN_ERROR (1) 98*7836SJohn.Forte@Sun.COM #define ISNS_RSP_MSG_FORMAT_ERROR (2) 99*7836SJohn.Forte@Sun.COM #define ISNS_RSP_INVALID_REGIS (3) 100*7836SJohn.Forte@Sun.COM #define ISNS_RSP_INVALID_QRY (5) 101*7836SJohn.Forte@Sun.COM #define ISNS_RSP_SRC_UNKNOWN (6) 102*7836SJohn.Forte@Sun.COM #define ISNS_RSP_SRC_ABSENT (7) 103*7836SJohn.Forte@Sun.COM #define ISNS_RSP_SRC_UNAUTHORIZED (8) 104*7836SJohn.Forte@Sun.COM #define ISNS_RSP_NO_SUCH_ENTRY (9) 105*7836SJohn.Forte@Sun.COM #define ISNS_RSP_VER_NOT_SUPPORTED (10) 106*7836SJohn.Forte@Sun.COM #define ISNS_RSP_INTERNAL_ERROR (11) 107*7836SJohn.Forte@Sun.COM #define ISNS_RSP_BUSY (12) 108*7836SJohn.Forte@Sun.COM #define ISNS_RSP_OPTION_NOT_UNDERSTOOD (13) 109*7836SJohn.Forte@Sun.COM #define ISNS_RSP_INVALID_UPDATE (14) 110*7836SJohn.Forte@Sun.COM #define ISNS_RSP_MSG_NOT_SUPPORTED (15) 111*7836SJohn.Forte@Sun.COM #define ISNS_RSP_SCN_EVENT_REJECTED (16) 112*7836SJohn.Forte@Sun.COM #define ISNS_RSP_SCN_REGIS_REJECTED (17) 113*7836SJohn.Forte@Sun.COM #define ISNS_RSP_ATTR_NOT_IMPL (18) 114*7836SJohn.Forte@Sun.COM #define ISNS_RSP_ESI_NOT_AVAILABLE (21) 115*7836SJohn.Forte@Sun.COM #define ISNS_RSP_INVALID_DEREGIS (22) 116*7836SJohn.Forte@Sun.COM #define ISNS_RSP_REGIS_NOT_SUPPORTED (23) 117*7836SJohn.Forte@Sun.COM 118*7836SJohn.Forte@Sun.COM /* iSNS Attribute IDs, iSNS Draft - section 6.1. */ 119*7836SJohn.Forte@Sun.COM #define ISNS_DELIMITER_ATTR_ID (0) 120*7836SJohn.Forte@Sun.COM #define ISNS_EID_ATTR_ID (1) 121*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_PROTOCOL_ATTR_ID (2) 122*7836SJohn.Forte@Sun.COM #define ISNS_MGMT_IP_ADDR_ATTR_ID (3) 123*7836SJohn.Forte@Sun.COM #define ISNS_TIMESTAMP_ATTR_ID (4) 124*7836SJohn.Forte@Sun.COM #define ISNS_VERSION_RANGE_ATTR_ID (5) 125*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_REG_PERIOD_ATTR_ID (6) 126*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_INDEX_ATTR_ID (7) 127*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_NEXT_INDEX_ATTR_ID (8) 128*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_ISAKMP_P1_ATTR_ID (11) 129*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_CERT_ATTR_ID (12) 130*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_IP_ADDR_ATTR_ID (16) 131*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_PORT_ATTR_ID (17) 132*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_NAME_ATTR_ID (18) 133*7836SJohn.Forte@Sun.COM #define ISNS_ESI_INTERVAL_ATTR_ID (19) 134*7836SJohn.Forte@Sun.COM #define ISNS_ESI_PORT_ATTR_ID (20) 135*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_INDEX_ATTR_ID (22) 136*7836SJohn.Forte@Sun.COM #define ISNS_SCN_PORT_ATTR_ID (23) 137*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_NEXT_INDEX_ATTR_ID (24) 138*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_SEC_BMP_ATTR_ID (27) 139*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_ISAKMP_P1_ATTR_ID (28) 140*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_ISAKMP_P2_ATTR_ID (29) 141*7836SJohn.Forte@Sun.COM #define ISNS_PORTAL_CERT_ATTR_ID (31) 142*7836SJohn.Forte@Sun.COM #define ISNS_ISCSI_NAME_ATTR_ID (32) 143*7836SJohn.Forte@Sun.COM #define ISNS_ISCSI_NODE_TYPE_ATTR_ID (33) 144*7836SJohn.Forte@Sun.COM #define ISNS_ISCSI_ALIAS_ATTR_ID (34) 145*7836SJohn.Forte@Sun.COM #define ISNS_ISCSI_SCN_BITMAP_ATTR_ID (35) 146*7836SJohn.Forte@Sun.COM #define ISNS_ISCSI_NODE_INDEX_ATTR_ID (36) 147*7836SJohn.Forte@Sun.COM #define ISNS_WWNN_TOKEN_ATTR_ID (37) 148*7836SJohn.Forte@Sun.COM #define ISNS_NODE_NEXT_INDEX_ATTR_ID (38) 149*7836SJohn.Forte@Sun.COM #define ISNS_ISCSI_AUTH_METHOD_ATTR_ID (42) 150*7836SJohn.Forte@Sun.COM #define ISNS_PG_ISCSI_NAME_ATTR_ID (48) 151*7836SJohn.Forte@Sun.COM #define ISNS_PG_PORTAL_IP_ADDR_ATTR_ID (49) 152*7836SJohn.Forte@Sun.COM #define ISNS_PG_PORTAL_PORT_ATTR_ID (50) 153*7836SJohn.Forte@Sun.COM #define ISNS_PG_TAG_ATTR_ID (51) 154*7836SJohn.Forte@Sun.COM #define ISNS_PG_INDEX_ATTR_ID (52) 155*7836SJohn.Forte@Sun.COM #define ISNS_PG_NEXT_ID_ATTR_ID (53) 156*7836SJohn.Forte@Sun.COM #define ISNS_DD_SET_ID_ATTR_ID (2049) 157*7836SJohn.Forte@Sun.COM #define ISNS_DD_SET_NAME_ATTR_ID (2050) 158*7836SJohn.Forte@Sun.COM #define ISNS_DD_SET_STATUS_ATTR_ID (2051) 159*7836SJohn.Forte@Sun.COM #define ISNS_DD_ID_ATTR_ID (2065) 160*7836SJohn.Forte@Sun.COM #define ISNS_DD_NAME_ATTR_ID (2066) 161*7836SJohn.Forte@Sun.COM #define ISNS_DD_ISCSI_INDEX_ATTR_ID (2067) 162*7836SJohn.Forte@Sun.COM #define ISNS_DD_ISCSI_NAME_ATTR_ID (2068) 163*7836SJohn.Forte@Sun.COM #define ISNS_DD_FC_PORT_NAME_ATTR_ID (2069) 164*7836SJohn.Forte@Sun.COM #define ISNS_DD_PORTAL_INDEX_ATTR_ID (2070) 165*7836SJohn.Forte@Sun.COM #define ISNS_DD_PORTAL_IP_ADDR_ATTR_ID (2071) 166*7836SJohn.Forte@Sun.COM #define ISNS_DD_PORTAL_PORT_ATTR_ID (2072) 167*7836SJohn.Forte@Sun.COM #define ISNS_DD_FEATURES_ATTR_ID (2078) 168*7836SJohn.Forte@Sun.COM 169*7836SJohn.Forte@Sun.COM /* Entity Protocol, RFC 4171 - section 6.2.2. */ 170*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_NO_PROTOCOL (1) 171*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_ISCSI (2) 172*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_IFCP (3) 173*7836SJohn.Forte@Sun.COM 174*7836SJohn.Forte@Sun.COM /* Protocol Version Range, RFC 4171 - section 6.2.5. */ 175*7836SJohn.Forte@Sun.COM #define ISNS_VER_SHIFT (16) 176*7836SJohn.Forte@Sun.COM #define ISNS_VERSION (0x0000FFFF) 177*7836SJohn.Forte@Sun.COM 178*7836SJohn.Forte@Sun.COM /* Portal Port, RFC 4171 - section 6.3.2. */ 179*7836SJohn.Forte@Sun.COM #define ISNS_PORT_BITS (0x0000FFFF) /* Bits 16 - 31 */ 180*7836SJohn.Forte@Sun.COM #define ISNS_PORT_TYPE (0x00010000) /* Bit 15 */ 181*7836SJohn.Forte@Sun.COM 182*7836SJohn.Forte@Sun.COM /* Portal Security Bitmap, RFC 4171 - section 6.3.9. */ 183*7836SJohn.Forte@Sun.COM #define ISNS_TUNNEL_MODE_PREFERRED (0x0040) /* Bit 25 */ 184*7836SJohn.Forte@Sun.COM #define ISNS_TRANS_MODE_PREFERRED (0x0020) /* Bit 26 */ 185*7836SJohn.Forte@Sun.COM #define ISNS_PFS_ENABLED (0x0010) /* Bit 27 */ 186*7836SJohn.Forte@Sun.COM #define ISNS_AGGR_MODE_ENABLED (0x0008) /* Bit 28 */ 187*7836SJohn.Forte@Sun.COM #define ISNS_MAIN_MODE_ENABLED (0x0004) /* Bit 29 */ 188*7836SJohn.Forte@Sun.COM #define ISNS_IKE_IPSEC_ENABLED (0x0002) /* Bit 30 */ 189*7836SJohn.Forte@Sun.COM #define ISNS_BITMAP_VALID (0x0001) /* Bit 31 */ 190*7836SJohn.Forte@Sun.COM 191*7836SJohn.Forte@Sun.COM /* iSCSI Node Type, RFC 4171 - section 6.4.2. */ 192*7836SJohn.Forte@Sun.COM #define ISNS_TARGET_NODE_TYPE (0x0001) 193*7836SJohn.Forte@Sun.COM #define ISNS_INITIATOR_NODE_TYPE (0x0002) 194*7836SJohn.Forte@Sun.COM #define ISNS_CONTROL_NODE_TYPE (0x0004) 195*7836SJohn.Forte@Sun.COM 196*7836SJohn.Forte@Sun.COM /* iSCSI Node SCN Bitmap, RFC 4171 - section 6.4.4. */ 197*7836SJohn.Forte@Sun.COM #define ISNS_INIT_SELF_INFO_ONLY (0x0080) /* Bit 24 */ 198*7836SJohn.Forte@Sun.COM #define ISNS_TARGET_SELF_INFO_ONLY (0x0040) /* Bit 25 */ 199*7836SJohn.Forte@Sun.COM #define ISNS_MGMT_REG (0x0020) /* Bit 26 */ 200*7836SJohn.Forte@Sun.COM #define ISNS_OBJECT_REMOVED (0x0010) /* Bit 27 */ 201*7836SJohn.Forte@Sun.COM #define ISNS_OBJECT_ADDED (0x0008) /* Bit 28 */ 202*7836SJohn.Forte@Sun.COM #define ISNS_OBJECT_UPDATED (0x0004) /* Bit 29 */ 203*7836SJohn.Forte@Sun.COM #define ISNS_MEMBER_REMOVED (0x0002) /* Bit 30 */ 204*7836SJohn.Forte@Sun.COM #define ISNS_MEMBER_ADDED (0x0001) /* Bit 31 */ 205*7836SJohn.Forte@Sun.COM 206*7836SJohn.Forte@Sun.COM /* Portal Group Tag, RFC 4171 - section 6.5.4. */ 207*7836SJohn.Forte@Sun.COM #define ISNS_PG_TAG (0x0000FFFF) /* Bits 16 - 31 */ 208*7836SJohn.Forte@Sun.COM 209*7836SJohn.Forte@Sun.COM /* DDS Status, RFC 4171 - section 6.11.1.3. */ 210*7836SJohn.Forte@Sun.COM #define ISNS_DDS_STATUS (0x0001) /* Bit 31 */ 211*7836SJohn.Forte@Sun.COM 212*7836SJohn.Forte@Sun.COM /* DD Feature, RFC 4171 - section 6.11.2.9. */ 213*7836SJohn.Forte@Sun.COM #define ISNS_DD_BOOTLIST (0x0001) /* Bit 31 */ 214*7836SJohn.Forte@Sun.COM 215*7836SJohn.Forte@Sun.COM /* iSNS Defaults */ 216*7836SJohn.Forte@Sun.COM #define ISNS_DEFAULT_PGT (0x00000001) 217*7836SJohn.Forte@Sun.COM #define ISNS_DEFAULT_DD_SET_ID (1) 218*7836SJohn.Forte@Sun.COM #define ISNS_DEFAULT_DD_ID (1) 219*7836SJohn.Forte@Sun.COM 220*7836SJohn.Forte@Sun.COM /* Min/Max length of names */ 221*7836SJohn.Forte@Sun.COM #define ISNS_DDS_MAX_NAME_LEN (256) 222*7836SJohn.Forte@Sun.COM #define ISNS_DD_MAX_NAME_LEN (256) 223*7836SJohn.Forte@Sun.COM #define ISNS_ISCSI_MAX_NAME_LEN (224) 224*7836SJohn.Forte@Sun.COM #define ISNS_ISCSI_MAX_ALIAS_LEN (256) 225*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_MIN_EID_LEN (3) 226*7836SJohn.Forte@Sun.COM #define ISNS_ENTITY_MAX_EID_LEN (255) 227*7836SJohn.Forte@Sun.COM 228*7836SJohn.Forte@Sun.COM 229*7836SJohn.Forte@Sun.COM typedef struct isns_tlv { 230*7836SJohn.Forte@Sun.COM uint32_t attr_id; 231*7836SJohn.Forte@Sun.COM uint32_t attr_len; 232*7836SJohn.Forte@Sun.COM uint8_t attr_value[1]; 233*7836SJohn.Forte@Sun.COM } isns_tlv_t; 234*7836SJohn.Forte@Sun.COM 235*7836SJohn.Forte@Sun.COM typedef struct isns_packet_data { 236*7836SJohn.Forte@Sun.COM uint16_t version; 237*7836SJohn.Forte@Sun.COM uint16_t func_id; 238*7836SJohn.Forte@Sun.COM uint16_t payload_len; 239*7836SJohn.Forte@Sun.COM uint16_t flags; 240*7836SJohn.Forte@Sun.COM uint16_t xid; 241*7836SJohn.Forte@Sun.COM uint16_t seq; 242*7836SJohn.Forte@Sun.COM 243*7836SJohn.Forte@Sun.COM int num_of_tlvs; 244*7836SJohn.Forte@Sun.COM isns_tlv_t tlvs[MAX_ISNS_OPER_ATTR_ENTRIES]; 245*7836SJohn.Forte@Sun.COM } isns_packet_data_t; 246*7836SJohn.Forte@Sun.COM 247*7836SJohn.Forte@Sun.COM typedef struct isns_reg_mesg { 248*7836SJohn.Forte@Sun.COM isns_tlv_t src_attr; 249*7836SJohn.Forte@Sun.COM int num_of_mesg_attrs; 250*7836SJohn.Forte@Sun.COM isns_tlv_t *mesg_attrs[MAX_ISNS_MESG_ATTR_ENTRIES]; 251*7836SJohn.Forte@Sun.COM isns_tlv_t delimiter_attr; 252*7836SJohn.Forte@Sun.COM isns_tlv_t *operating_attrs[MAX_ISNS_OPER_ATTR_ENTRIES]; 253*7836SJohn.Forte@Sun.COM } isns_reg_mesg_t; 254*7836SJohn.Forte@Sun.COM 255*7836SJohn.Forte@Sun.COM typedef struct isns_resp_mesg { 256*7836SJohn.Forte@Sun.COM uint8_t status[4]; 257*7836SJohn.Forte@Sun.COM isns_tlv_t messages_attrs[MAX_ISNS_MESG_ATTR_ENTRIES]; 258*7836SJohn.Forte@Sun.COM isns_tlv_t delimiter_attr; 259*7836SJohn.Forte@Sun.COM isns_tlv_t operating_attrs[MAX_ISNS_OPER_ATTR_ENTRIES]; 260*7836SJohn.Forte@Sun.COM } isns_resp_mesg_t; 261*7836SJohn.Forte@Sun.COM 262*7836SJohn.Forte@Sun.COM typedef struct isns_pdu { 263*7836SJohn.Forte@Sun.COM uint16_t version; 264*7836SJohn.Forte@Sun.COM uint16_t func_id; 265*7836SJohn.Forte@Sun.COM uint16_t payload_len; 266*7836SJohn.Forte@Sun.COM uint16_t flags; 267*7836SJohn.Forte@Sun.COM uint16_t xid; 268*7836SJohn.Forte@Sun.COM uint16_t seq; 269*7836SJohn.Forte@Sun.COM uint8_t payload[1]; 270*7836SJohn.Forte@Sun.COM } isns_pdu_t; 271*7836SJohn.Forte@Sun.COM 272*7836SJohn.Forte@Sun.COM typedef struct isns_resp { 273*7836SJohn.Forte@Sun.COM uint32_t status; 274*7836SJohn.Forte@Sun.COM uint8_t data[1]; 275*7836SJohn.Forte@Sun.COM } isns_resp_t; 276*7836SJohn.Forte@Sun.COM 277*7836SJohn.Forte@Sun.COM #ifdef __cplusplus 278*7836SJohn.Forte@Sun.COM } 279*7836SJohn.Forte@Sun.COM #endif 280*7836SJohn.Forte@Sun.COM 281*7836SJohn.Forte@Sun.COM #endif /* _ISNS_PROTOCOL_H */ 282