README 1007 B

123456789101112131415161718192021222324252627282930313233
  1. Basic LDAP v3 functionality for the GO programming language.
  2. Required Librarys:
  3. github.com/johnweldon/asn1-ber
  4. Working:
  5. Connecting to LDAP server
  6. Binding to LDAP server
  7. Searching for entries
  8. Compiling string filters to LDAP filters
  9. Paging Search Results
  10. Modify Requests / Responses
  11. Examples:
  12. search
  13. modify
  14. Tests Implemented:
  15. Filter Compile / Decompile
  16. TODO:
  17. Add Requests / Responses
  18. Delete Requests / Responses
  19. Modify DN Requests / Responses
  20. Compare Requests / Responses
  21. Implement Tests / Benchmarks
  22. This feature is disabled at the moment, because in some cases the "Search Request Done" packet will be handled before the last "Search Request Entry":
  23. Mulitple internal goroutines to handle network traffic
  24. Makes library goroutine safe
  25. Can perform multiple search requests at the same time and return
  26. the results to the proper goroutine. All requests are blocking
  27. requests, so the goroutine does not need special handling