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

..03-May-2022-

.githooks/H23-Nov-2017-61

.gitignoreH A D23-Nov-20170

.travis.ymlH A D23-Nov-2017747 3231

LICENSEH A D23-Nov-20171.1 KiB2318

MakefileH A D23-Nov-20171.1 KiB5335

README.mdH A D23-Nov-20171.2 KiB5436

add.goH A D23-Nov-20173.3 KiB11479

atomic_value.goH A D23-Nov-2017188 147

atomic_value_go13.goH A D23-Nov-2017452 2919

bind.goH A D23-Nov-20174.4 KiB144107

client.goH A D23-Nov-2017737 2820

compare.goH A D23-Nov-20172.8 KiB8650

conn.goH A D23-Nov-201712.8 KiB471371

conn_test.goH A D23-Nov-20179.7 KiB337224

control.goH A D23-Nov-201713.4 KiB421302

control_test.goH A D23-Nov-20173.6 KiB9880

debug.goH A D23-Nov-2017390 2516

del.goH A D23-Nov-20172.1 KiB8562

dn.goH A D23-Nov-20177.5 KiB248159

dn_test.goH A D23-Nov-20177.2 KiB212179

doc.goH A D23-Nov-201770 51

error.goH A D23-Nov-20176.3 KiB156133

error_test.goH A D23-Nov-20172.6 KiB10366

example_test.goH A D23-Nov-20177.7 KiB306239

filter.goH A D23-Nov-201715.1 KiB470382

filter_test.goH A D23-Nov-20176.9 KiB255227

ldap.goH A D23-Nov-201710.3 KiB321274

ldap_test.goH A D23-Nov-20176.5 KiB276241

modify.goH A D23-Nov-20175.8 KiB171109

passwdmodify.goH A D23-Nov-20175.3 KiB14997

search.goH A D23-Nov-201714.7 KiB451307

search_test.goH A D23-Nov-2017722 3227

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