posix-group-func.h 809 B

1234567891011121314151617181920212223
  1. /*
  2. $Id: posix-group-func.h 11 2011-03-30 12:38:14Z grzemba $
  3. */
  4. #ifndef POSIX_GROUP_WINSYNC_H
  5. #define POSIX_GROUP_WINSYNC_H
  6. /*
  7. Slapi_PBlock *searchDN( const char *baseDN, const char *filter, char *attrs[] );
  8. Slapi_PBlock * dnHasObjectClass( const char *baseDN, const char *objectClass, Slapi_Entry **entry );
  9. char * searchUid(const char *udn);
  10. int dn_in_set(const char* uid, char **uids);
  11. */
  12. int modGroupMembership(Slapi_Entry *entry, Slapi_Mods *smods, int *do_modify);
  13. int addGroupMembership(Slapi_Entry *entry, Slapi_Entry *ad_entry);
  14. char * searchUid(const char *udn);
  15. void memberUidLock();
  16. void memberUidUnlock();
  17. int memberUidLockInit();
  18. int addUserToGroupMembership(Slapi_Entry *entry);
  19. void propogateDeletionsUpward(Slapi_Entry *, const Slapi_DN *, Slapi_ValueSet*, Slapi_ValueSet *, int);
  20. #endif