Contains information about a sort key.
typedef struct ldapsortkey {
char attributeType;
char *orderingRule;
int reverseOrder;
} LDAPSortKey;
Points to the name of the attribute to use for sorting.
Points to the OID of the ordering rule to use for the sorting. eDirectory does not support ordering rules.
Specifies whether to sort results in reverse order:
Non-zero indicates that the results are sorted in reverse order (large to small). eDirectory does not support this type of sort.
Zero indicates that the results are sorted in forward order (small to large)