1*a6d42e7dSPeter Dunlap# 2*a6d42e7dSPeter Dunlap# CDDL HEADER START 3*a6d42e7dSPeter Dunlap# 4*a6d42e7dSPeter Dunlap# The contents of this file are subject to the terms of the 5*a6d42e7dSPeter Dunlap# Common Development and Distribution License (the "License"). 6*a6d42e7dSPeter Dunlap# You may not use this file except in compliance with the License. 7*a6d42e7dSPeter Dunlap# 8*a6d42e7dSPeter Dunlap# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*a6d42e7dSPeter Dunlap# or http://www.opensolaris.org/os/licensing. 10*a6d42e7dSPeter Dunlap# See the License for the specific language governing permissions 11*a6d42e7dSPeter Dunlap# and limitations under the License. 12*a6d42e7dSPeter Dunlap# 13*a6d42e7dSPeter Dunlap# When distributing Covered Code, include this CDDL HEADER in each 14*a6d42e7dSPeter Dunlap# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*a6d42e7dSPeter Dunlap# If applicable, add the following below this CDDL HEADER, with the 16*a6d42e7dSPeter Dunlap# fields enclosed by brackets "[]" replaced with your own identifying 17*a6d42e7dSPeter Dunlap# information: Portions Copyright [yyyy] [name of copyright owner] 18*a6d42e7dSPeter Dunlap# 19*a6d42e7dSPeter Dunlap# CDDL HEADER END 20*a6d42e7dSPeter Dunlap# 21*a6d42e7dSPeter Dunlap# 22*a6d42e7dSPeter Dunlap# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 23*a6d42e7dSPeter Dunlap# Use is subject to license terms. 24*a6d42e7dSPeter Dunlap# 25*a6d42e7dSPeter DunlapSUNW_1.1 { 26*a6d42e7dSPeter Dunlap global: 27*a6d42e7dSPeter Dunlap it_config_load; 28*a6d42e7dSPeter Dunlap it_config_commit; 29*a6d42e7dSPeter Dunlap it_config_setprop; 30*a6d42e7dSPeter Dunlap it_config_free; 31*a6d42e7dSPeter Dunlap it_tgt_create; 32*a6d42e7dSPeter Dunlap it_tgt_setprop; 33*a6d42e7dSPeter Dunlap it_tgt_delete; 34*a6d42e7dSPeter Dunlap it_tgt_free; 35*a6d42e7dSPeter Dunlap it_tpg_create; 36*a6d42e7dSPeter Dunlap it_tpg_delete; 37*a6d42e7dSPeter Dunlap it_tpg_free; 38*a6d42e7dSPeter Dunlap it_ini_create; 39*a6d42e7dSPeter Dunlap it_ini_delete; 40*a6d42e7dSPeter Dunlap it_ini_setprop; 41*a6d42e7dSPeter Dunlap it_ini_free; 42*a6d42e7dSPeter Dunlap it_tpgt_create; 43*a6d42e7dSPeter Dunlap it_tpgt_delete; 44*a6d42e7dSPeter Dunlap it_tpgt_free; 45*a6d42e7dSPeter Dunlap it_portal_create; 46*a6d42e7dSPeter Dunlap}; 47*a6d42e7dSPeter Dunlap 48*a6d42e7dSPeter DunlapSUNWprivate { 49*a6d42e7dSPeter Dunlap global: 50*a6d42e7dSPeter Dunlap it_config_to_nv; 51*a6d42e7dSPeter Dunlap it_nv_to_config; 52*a6d42e7dSPeter Dunlap it_nv_to_tgtlist; 53*a6d42e7dSPeter Dunlap it_tgtlist_to_nv; 54*a6d42e7dSPeter Dunlap it_tgt_to_nv; 55*a6d42e7dSPeter Dunlap it_nv_to_tgt; 56*a6d42e7dSPeter Dunlap it_tpgt_to_nv; 57*a6d42e7dSPeter Dunlap it_nv_to_tpgt; 58*a6d42e7dSPeter Dunlap it_tpgtlist_to_nv; 59*a6d42e7dSPeter Dunlap it_nv_to_tpgtlist; 60*a6d42e7dSPeter Dunlap it_tpg_to_nv; 61*a6d42e7dSPeter Dunlap it_nv_to_tpg; 62*a6d42e7dSPeter Dunlap it_tpglist_to_nv; 63*a6d42e7dSPeter Dunlap it_nv_to_tpglist; 64*a6d42e7dSPeter Dunlap it_ini_to_nv; 65*a6d42e7dSPeter Dunlap it_nv_to_ini; 66*a6d42e7dSPeter Dunlap it_inilist_to_nv; 67*a6d42e7dSPeter Dunlap it_nv_to_inilist; 68*a6d42e7dSPeter Dunlap it_common_convert_sa; 69*a6d42e7dSPeter Dunlap it_config_free_cmn; 70*a6d42e7dSPeter Dunlap it_tgt_free_cmn; 71*a6d42e7dSPeter Dunlap it_tpg_free_cmn; 72*a6d42e7dSPeter Dunlap it_ini_free_cmn; 73*a6d42e7dSPeter Dunlap it_tpgt_free_cmn; 74*a6d42e7dSPeter Dunlap sockaddr_to_str; 75*a6d42e7dSPeter Dunlap validate_iscsi_name; 76*a6d42e7dSPeter Dunlap local: 77*a6d42e7dSPeter Dunlap *; 78*a6d42e7dSPeter Dunlap}; 79*a6d42e7dSPeter Dunlap 80