/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
enum fmd_adm_error {
FMD_ADM_ERR_NOMEM = 1,
};
struct fmd_rpc_modstat {
enum fmd_adm_error rms_err;
};
struct fmd_rpc_modinfo {
bool rmi_faulty;
struct fmd_rpc_modinfo *rmi_next;
};
struct fmd_rpc_modlist {
enum fmd_adm_error rml_err;
struct fmd_rpc_modinfo *rml_list;
};
struct fmd_rpc_rsrcinfo {
bool rri_faulty;
bool rri_unusable;
bool rri_invisible;
enum fmd_adm_error rri_err;
};
struct fmd_rpc_rsrclist {
enum fmd_adm_error rrl_err;
bool rrl_all;
};
struct fmd_rpc_serdinfo {
bool rsi_fired;
enum fmd_adm_error rsi_err;
};
struct fmd_rpc_serdlist {
enum fmd_adm_error rsl_err;
};
struct fmd_rpc_xprtlist {
enum fmd_adm_error rxl_err;
};
struct fmd_rpc_caseinfo {
enum fmd_adm_error rci_err;
};
struct fmd_rpc_caselist {
enum fmd_adm_error rcl_err;
};
} = 1;
} = 100169;