• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.githooks/H23-Nov-2017-

.gitignoreH A D23-Nov-20170

.travis.ymlH A D23-Nov-2017747

LICENSEH A D23-Nov-20171.1 KiB

MakefileH A D23-Nov-20171.1 KiB

README.mdH A D23-Nov-20171.2 KiB

add.goH A D23-Nov-20173.3 KiB

atomic_value.goH A D23-Nov-2017188

atomic_value_go13.goH A D23-Nov-2017452

bind.goH A D23-Nov-20174.4 KiB

client.goH A D23-Nov-2017737

compare.goH A D23-Nov-20172.8 KiB

conn.goH A D23-Nov-201712.8 KiB

conn_test.goH A D23-Nov-20179.7 KiB

control.goH A D23-Nov-201713.4 KiB

control_test.goH A D23-Nov-20173.6 KiB

debug.goH A D23-Nov-2017390

del.goH A D23-Nov-20172.1 KiB

dn.goH A D23-Nov-20177.5 KiB

dn_test.goH A D23-Nov-20177.2 KiB

doc.goH A D23-Nov-201770

error.goH A D23-Nov-20176.3 KiB

error_test.goH A D23-Nov-20172.6 KiB

example_test.goH A D23-Nov-20177.7 KiB

filter.goH A D23-Nov-201715.1 KiB

filter_test.goH A D23-Nov-20176.9 KiB

ldap.goH A D23-Nov-201710.3 KiB

ldap_test.goH A D23-Nov-20176.5 KiB

modify.goH A D23-Nov-20175.8 KiB

passwdmodify.goH A D23-Nov-20175.3 KiB

search.goH A D23-Nov-201714.7 KiB

search_test.goH A D23-Nov-2017722

README.md

1[![GoDoc](https://godoc.org/gopkg.in/ldap.v2?status.svg)](https://godoc.org/gopkg.in/ldap.v2)
2[![Build Status](https://travis-ci.org/go-ldap/ldap.svg)](https://travis-ci.org/go-ldap/ldap)
3
4# Basic LDAP v3 functionality for the GO programming language.
5
6## Install
7
8For the latest version use:
9
10    go get gopkg.in/ldap.v2
11
12Import the latest version with:
13
14    import "gopkg.in/ldap.v2"
15
16## Required Libraries:
17
18 - gopkg.in/asn1-ber.v1
19
20## Features:
21
22 - Connecting to LDAP server (non-TLS, TLS, STARTTLS)
23 - Binding to LDAP server
24 - Searching for entries
25 - Filter Compile / Decompile
26 - Paging Search Results
27 - Modify Requests / Responses
28 - Add Requests / Responses
29 - Delete Requests / Responses
30
31## Examples:
32
33 - search
34 - modify
35
36## Contributing:
37
38Bug reports and pull requests are welcome!
39
40Before submitting a pull request, please make sure tests and verification scripts pass:
41```
42make all
43```
44
45To set up a pre-push hook to run the tests and verify scripts before pushing:
46```
47ln -s ../../.githooks/pre-push .git/hooks/pre-push
48```
49
50---
51The Go gopher was designed by Renee French. (http://reneefrench.blogspot.com/)
52The design is licensed under the Creative Commons 3.0 Attributions license.
53Read this article for more details: http://blog.golang.org/gopher
54