Skip Navigation Links | |
Exit Print View | |
man pages section 3: Library Interfaces and Headers Oracle Solaris 11.1 Information Library |
Library Interfaces and Headers
SMHBA_GetAdapterAttributes(3LIB)
SMHBA_GetAdapterPortAttributes(3LIB)
SMHBA_GetBindingCapability(3LIB)
SMHBA_GetDiscoveredPortAttributes(3LIB)
SMHBA_GetFCPhyAttributes(3LIB)
SMHBA_GetPersistentBinding(3LIB)
SMHBA_GetPortAttributesByWWN(3LIB)
SMHBA_GetProtocolStatistics(3LIB)
SMHBA_GetSASPhyAttributes(3LIB)
SMHBA_GetVendorLibraryAttributes(3LIB)
SMHBA_GetWrapperLibraryAttributes(3LIB)
SMHBA_RegisterForAdapterAddEvents(3LIB)
SMHBA_RegisterForAdapterEvents(3LIB)
SMHBA_RegisterForAdapterPhyStatEvents(3LIB)
SMHBA_RegisterForAdapterPortEvents(3LIB)
SMHBA_RegisterForAdapterPortStatEvents(3LIB)
SMHBA_RegisterForTargetEvents(3LIB)
SMHBA_RemoveAllPersistentBindings(3LIB)
SMHBA_RemovePersistentBinding(3LIB)
- reparse point library
cc [ flag... ] file... -lreparse [ library... ] #include <sys/fs_reparse.h> #include <rp_plugin.h>
The functions in this library perform operations related to “reparse points”, which are the basis of Microsoft DFS referrals and NFS referrals support on Solaris SMB and NFS file servers. A service which offers namespace redirection can provide “plugins”, libraries which provide creation and interpretation services for reparse points.
The shared object libdl.so.1 provides the following public interfaces. See Intro(3) for additional information on shared object interfaces.
|
typedef struct reparse_plugin_ops { int rpo_version; /* version number */ int (*rpo_init)(void); void (*rpo_fini)(void); char *(*rpo_svc_types)(void); boolean_t (*rpo_supports_svc)(const char *); char *(*rpo_form)(const char *, const char *, char *, size_t *); int (*rpo_deref)(const char *, const char *, char *, size_t *); } reparse_plugin_ops_t
For example,
reparse_plugin_ops_t reparse_plugin_ops = { REPARSE_PLUGIN_V1, nfs_init, nfs_fini, nfs_svc_types, nfs_supports_svc, nfs_form, nfs_deref };
The version 1 ops table supports the following operations:
This is a one-time initialization function that will be called by libreparse.so upon loading the plugin prior to any other operations. This provides the plugin with an opportunity to perform service specific initialization. This function must return zero on success or non-zero errno values to indicate an error.
This is a one-time termination function that will be called by libreparse.so prior closing the plugin. Once called, libreparse.so will not call any other operations on the plugin.
Returns a pointer to a string containing a list of comma separated svc_types. svc_type names are case-insensitive and white space in the returned string is irrelevant and must be ignored by parsers.
This function will return true if the plugin supports the specified service type, otherwise it must return false.
Formats a string with the appropriate service-specific syntax to create a reparse point of the given svc_type, using the string from the reparse_add(3REPARSE) call as part of the string. The caller specifies the size of the buffer provided via *bufsize; the routine will fail with EOVERFLOW if the results will not fit in the buffer, in which case, *bufsize will contain the number of bytes needed to hold the results.
Accepts the service-specific item from the reparse point and returns the service-specific data requested. The caller specifies the size of the buffer provided via *bufsize; the routine will fail with EOVERFLOW if the results will not fit in the buffer, in which case, *bufsize will contain the number of bytes needed to hold the results.
shared object
64-bit shared object
See attributes(5) for descriptions of the following attributes:
|