TgtFCHBA.h revision 2
2N/A/*
2N/A * CDDL HEADER START
2N/A *
2N/A * The contents of this file are subject to the terms of the
2N/A * Common Development and Distribution License (the "License").
2N/A * You may not use this file except in compliance with the License.
2N/A *
2N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2N/A * or http://www.opensolaris.org/os/licensing.
2N/A * See the License for the specific language governing permissions
2N/A * and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL HEADER in each
2N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2N/A * If applicable, add the following below this CDDL HEADER, with the
2N/A * fields enclosed by brackets "[]" replaced with your own identifying
2N/A * information: Portions Copyright [yyyy] [name of copyright owner]
2N/A *
2N/A * CDDL HEADER END
2N/A */
2N/A/*
2N/A * Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
2N/A */
2N/A
2N/A#ifndef _TGTFCHBA_H
2N/A#define _TGTFCHBA_H
2N/A
2N/A
2N/A
2N/A
2N/A#include "HBA.h"
2N/A#include "TgtFCHBAPort.h"
2N/A#include <map>
2N/A#include <string>
2N/A#include <hbaapi.h>
2N/A
2N/A
2N/A/*
2N/A * Represents an individual FCHBA
2N/A */
2N/Aclass TgtFCHBA : public HBA {
2N/Apublic:
2N/A TgtFCHBA(std::string path);
2N/A /*
2N/A * Fetch the name, excluding the trailing "-" and index number
2N/A */
2N/A virtual std::string getName();
2N/A virtual HBA_ADAPTERATTRIBUTES getHBAAttributes(int portIndex = 0);
2N/A virtual int doForceLip();
2N/A static void loadAdapters(std::vector < HBA* > &list);
2N/A virtual HBA_ADAPTERATTRIBUTES npivGetHBAAttributes(int portIndex = 0) {
2N/A throw NotSupportedException(); }
2N/A
2N/Aprivate:
2N/A std::string name;
2N/A static const std::string FCT_DRIVER_PATH;
2N/A static const std::string FCT_ADAPTER_NAME_PREFIX;
2N/A static const std::string FCT_DRIVER_PKG;
2N/A static const int MAX_FCTIO_MSG_LEN;
2N/A};
2N/A
2N/A
2N/A#endif /* _TGTFCHBA_H */