addn.h 523 B

12345678910111213141516171819202122232425
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright (C) 2016 Red Hat, Inc.
  3. * All rights reserved.
  4. *
  5. * License: GPL (version 3 or any later version).
  6. * See LICENSE for details.
  7. * END COPYRIGHT BLOCK **/
  8. #ifdef HAVE_CONFIG_H
  9. # include <config.h>
  10. #endif
  11. /*
  12. * AD DN bind plugin header
  13. */
  14. #include "slapi-plugin.h"
  15. /* Because we are an internal plugin, we need this for the macro ... slapi_log_err */
  16. #include "slapi-private.h"
  17. #include <plstr.h>
  18. struct addn_config {
  19. char *default_domain;
  20. size_t default_domain_len;
  21. };