LDAP_SERVER_DOMAIN_SCOPE_OID control code
The LDAP_SERVER_DOMAIN_SCOPE_OID control is used to instruct the LDAP server not to generate any referrals when completing a request. This control also limits any search using it to a single naming context.
To use this control, set the members of the LDAPControl structure as follows:
PWCHAR ldctl_oid = LDAP_SERVER_DOMAIN_SCOPE_OID;
struct berval ldctl_value = {0, NULL};
BOOLEAN ldctl_iscritical;
Members
-
ldctl_oid
-
LDAP_SERVER_DOMAIN_SCOPE_OID, which is defined as "1.2.840.113556.1.4.1339".
-
ldctl_value
-
No data for this control. In the berval structure, set bv_len to zero and bv_val to NULL.
-
ldctl_iscritical
-
Can be TRUE or FALSE depending on whether the referral limitation is critical to your application.
Requirements
Minimum supported client |
Windows Vista |
Minimum supported server |
Windows Server 2008 |
Header |
|