Syntax
#include "slapi-plugin.h" int slapi_mr_filter_index (Slapi_Filter *f, Slapi_PBlock *pb);
Parameters
The function has the following parameters:
Returns. The result code returned by the indexer function.
Description. If the filter specified by the f argument is an extensible match filter, this function calls the indexer function associated with the filter.
Before calling this function, make sure that the parameter block pb contains the information needed by the indexer function. You can pass information to the indexer function by using the following parameters:
SLAPI_PLUGIN_MR_VALUES should contain a NULL-terminated list of values from the extensible match filter.
SLAPI_PLUGIN_OBJECT should contain information that you want to pass to the indexer function.
For more information on filter index functions and indexer functions, see Chapter 12, "Writing Matching Rule Plug-Ins".
Example
[To be added]
See Also