mirror of
https://github.com/samba-team/samba.git
synced 2025-11-02 20:23:50 +03:00
r17420: add client support for the LDAP_SERVER_DOMAIN_SCOPE control
metze
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
4ccd0f8171
commit
84e74a759c
@@ -401,6 +401,15 @@ static BOOL decode_asq_control(void *mem_ctx, DATA_BLOB in, void **out)
|
||||
return True;
|
||||
}
|
||||
|
||||
static BOOL decode_domain_scope_request(void *mem_ctx, DATA_BLOB in, void **out)
|
||||
{
|
||||
if (in.length != 0) {
|
||||
return False;
|
||||
}
|
||||
|
||||
return True;
|
||||
}
|
||||
|
||||
static BOOL decode_notification_request(void *mem_ctx, DATA_BLOB in, void **out)
|
||||
{
|
||||
if (in.length != 0) {
|
||||
@@ -850,6 +859,16 @@ static BOOL encode_dirsync_request(void *mem_ctx, void *in, DATA_BLOB *out)
|
||||
return True;
|
||||
}
|
||||
|
||||
static BOOL encode_domain_scope_request(void *mem_ctx, void *in, DATA_BLOB *out)
|
||||
{
|
||||
if (in) {
|
||||
return False;
|
||||
}
|
||||
|
||||
*out = data_blob(NULL, 0);
|
||||
return True;
|
||||
}
|
||||
|
||||
static BOOL encode_notification_request(void *mem_ctx, void *in, DATA_BLOB *out)
|
||||
{
|
||||
if (in) {
|
||||
@@ -995,6 +1014,7 @@ struct control_handler ldap_known_controls[] = {
|
||||
{ "1.2.840.113556.1.4.841", decode_dirsync_request, encode_dirsync_request },
|
||||
{ "1.2.840.113556.1.4.528", decode_notification_request, encode_notification_request },
|
||||
{ "1.2.840.113556.1.4.801", decode_sd_flags_request, encode_sd_flags_request },
|
||||
{ "1.2.840.113556.1.4.1339", decode_domain_scope_request, encode_domain_scope_request },
|
||||
{ "1.2.840.113556.1.4.1340", decode_search_options_request, encode_search_options_request },
|
||||
{ "2.16.840.1.113730.3.4.2", decode_manageDSAIT_request, encode_manageDSAIT_request },
|
||||
{ "2.16.840.1.113730.3.4.9", decode_vlv_request, encode_vlv_request },
|
||||
|
||||
Reference in New Issue
Block a user