• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/dsdb/samdb/ldb_modules/

Lines Matching defs:objectGUID

152 	struct GUID objectGUID;
204 /* Find the objectGUID to use as the key */
205 objectGUID = samdb_result_guid(ac->req->op.add.message, "objectGUID");
218 /* We must have an objectGUID already, or we don't know where
220 * search', to allow the directory to create the objectGUID */
221 if (ldb_msg_find_ldb_val(req->op.add.message, "objectGUID") == NULL) {
223 "no objectGUID found in search: "
225 "onfigured below objectGUID module!\n");
235 &objectGUID)))) {
379 /* On a modify, we don't have the objectGUID handy, so we need to
385 static const char * const attrs[] = { "objectGUID", "objectClass", NULL };
440 struct GUID objectGUID;
474 /* After we find out the objectGUID for the entry, modify the local
498 "objectGUID") == NULL) {
500 "no objectGUID found in search: "
502 "configured below objectGUID "
508 objectGUID = samdb_result_guid(ac->remote->message,
509 "objectGUID");
515 GUID_string(ac, &objectGUID)))) {
590 /* On a modify, we don't have the objectGUID handy, so we need to
596 static const char * const attrs[] = { "objectGUID", "objectClass", NULL };
651 struct GUID objectGUID;
685 /* After we find out the objectGUID for the entry, modify the local
708 "objectGUID") == NULL) {
710 "no objectGUID found in search: "
712 "configured below objectGUID "
718 objectGUID = samdb_result_guid(ac->remote->message,
719 "objectGUID");
725 GUID_string(ac, &objectGUID)))) {
892 * based on the objectGUID we asked for as an additional attribute */
899 struct GUID objectGUID;
922 ldb_msg_remove_attr(ares->message, "objectGUID");
932 if (ldb_msg_find_ldb_val(ares->message, "objectGUID") == NULL) {
934 "no objectGUID found in search: local_password module must be configured below objectGUID module!\n");
939 objectGUID = samdb_result_guid(ares->message, "objectGUID");
942 ldb_msg_remove_attr(ares->message, "objectGUID");
953 GUID_string(ac, &objectGUID)))) {
1056 if (!ldb_attr_in_list(req->op.search.attrs, "objectGUID")) {
1057 search_attrs = ldb_attr_list_copy_add(ac, req->op.search.attrs, "objectGUID");