1*2314Smcneal /* 2*2314Smcneal * CDDL HEADER START 3*2314Smcneal * 4*2314Smcneal * The contents of this file are subject to the terms of the 5*2314Smcneal * Common Development and Distribution License (the "License"). 6*2314Smcneal * You may not use this file except in compliance with the License. 7*2314Smcneal * 8*2314Smcneal * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*2314Smcneal * or http://www.opensolaris.org/os/licensing. 10*2314Smcneal * See the License for the specific language governing permissions 11*2314Smcneal * and limitations under the License. 12*2314Smcneal * 13*2314Smcneal * When distributing Covered Code, include this CDDL HEADER in each 14*2314Smcneal * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*2314Smcneal * If applicable, add the following below this CDDL HEADER, with the 16*2314Smcneal * fields enclosed by brackets "[]" replaced with your own identifying 17*2314Smcneal * information: Portions Copyright [yyyy] [name of copyright owner] 18*2314Smcneal * 19*2314Smcneal * CDDL HEADER END 20*2314Smcneal */ 21*2314Smcneal /* 22*2314Smcneal * Copyright 2000 Cisco Systems, Inc. All rights reserved. 23*2314Smcneal * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24*2314Smcneal * Use is subject to license terms. 25*2314Smcneal * 26*2314Smcneal * iSCSI Software Initiator 27*2314Smcneal */ 28*2314Smcneal 29*2314Smcneal #ifndef _ISCSI_AUTHCLIENTGLUE_H 30*2314Smcneal #define _ISCSI_AUTHCLIENTGLUE_H 31*2314Smcneal 32*2314Smcneal #pragma ident "%Z%%M% %I% %E% SMI" 33*2314Smcneal 34*2314Smcneal #ifdef __cplusplus 35*2314Smcneal extern "C" { 36*2314Smcneal #endif 37*2314Smcneal 38*2314Smcneal #include <md5.h> 39*2314Smcneal 40*2314Smcneal typedef MD5_CTX IscsiAuthMd5Context; 41*2314Smcneal 42*2314Smcneal extern int iscsiAuthIscsiServerHandle; 43*2314Smcneal extern int iscsiAuthIscsiClientHandle; 44*2314Smcneal 45*2314Smcneal #ifdef __cplusplus 46*2314Smcneal } 47*2314Smcneal #endif 48*2314Smcneal 49*2314Smcneal #endif /* _ISCSI_AUTHCLIENTGLUE_H */ 50