libdladm_impl.h revision 2
/*
* 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
*/
/*
*/
#ifndef _LIBDLADM_IMPL_H
#define _LIBDLADM_IMPL_H
#include <sys/mac_flow.h>
#include <libdladm.h>
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
#define MAXLINELEN 1024
/*
* The handle contains file descriptors to DLD_CONTROL_DEV and
* DLMGMT_DOOR. Rather than opening the file descriptor each time
* it is required, the handle is opened by consumers of libdladm
* (e.g., dladm) and then passed to libdladm. The handle also contains
* profile-specific configuration.
*/
struct dladm_handle {
int dld_fd; /* file descriptor to DLD_CONTROL_DEV */
int door_fd; /* file descriptor to DLMGMT_DOOR */
};
/* DLMGMT_DOOR can only be accessed by libdladm and dlmgmtd */
extern dladm_status_t dladm_errno2status(int);
link_state_t *);
extern void dladm_free_args(dladm_arg_list_t *);
/*
* Link attributes persisted by dlmgmtd.
*/
/*
* Set for VLANs only
*/
/*
* Set for AGGRs only
*/
/*
* Set for VNICs only
*/
/*
* Set for simlinks only
*/
/*
* Set for IB partitions only
*/
/*
* Set for flows only
*/
/*
* Common fields
*/
/*
* List of all the above attributes.
*/
/*
* Data structures used for implementing temporary properties
*/
typedef struct val_desc {
char *vd_name;
} val_desc_t;
uint_t);
/*
* The prop extract() callback.
*
* rp_extract extracts the kernel structure from the val_desc_t created
* by the pd_check function.
*/
typedef struct resource_prop_s {
/*
* resource property name
*/
char *rp_name;
/*
* callback to extract kernel structure
*/
/*
* Set for bridged links only
*/
#ifdef __cplusplus
}
#endif
#endif /* _LIBDLADM_IMPL_H */