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

..25-Jul-2019-

.gitignoreH A D25-Jul-20190

.travis.ymlH A D25-Jul-2019599 3330

CONTRIBUTING.mdH A D25-Jul-2019486 138

LICENSEH A D25-Jul-20191.1 KiB2318

MakefileH A D25-Jul-20191.8 KiB8362

README.mdH A D25-Jul-20191.3 KiB5537

add.goH A D25-Jul-20193.4 KiB12084

bind.goH A D25-Jul-20194.1 KiB13697

client.goH A D25-Jul-2019787 2921

compare.goH A D25-Jul-20192.6 KiB8451

conn.goH A D25-Jul-201913.8 KiB517404

control.goH A D25-Jul-201916.8 KiB498358

debug.goH A D25-Jul-2019390 2516

del.goH A D25-Jul-20192 KiB8562

dn.goH A D25-Jul-20197.4 KiB248163

doc.goH A D25-Jul-201970 51

error.goH A D25-Jul-201911.9 KiB235209

filter.goH A D25-Jul-201915 KiB466382

ldap.goH A D25-Jul-201911 KiB339295

moddn.goH A D25-Jul-20193.2 KiB10567

modify.goH A D25-Jul-20195.2 KiB174111

passwdmodify.goH A D25-Jul-20195.5 KiB158105

search.goH A D25-Jul-201914.6 KiB451311

README.md

1[![GoDoc](https://godoc.org/gopkg.in/ldap.v3?status.svg)](https://godoc.org/gopkg.in/ldap.v3)
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.v3
11
12Import the latest version with:
13
14    import "gopkg.in/ldap.v3"
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 - Modify DN Requests / Responses
31
32## Examples:
33
34 - search
35 - modify
36
37## Contributing:
38
39Bug reports and pull requests are welcome!
40
41Before submitting a pull request, please make sure tests and verification scripts pass:
42```
43make all
44```
45
46To set up a pre-push hook to run the tests and verify scripts before pushing:
47```
48ln -s ../../.githooks/pre-push .git/hooks/pre-push
49```
50
51---
52The Go gopher was designed by Renee French. (http://reneefrench.blogspot.com/)
53The design is licensed under the Creative Commons 3.0 Attributions license.
54Read this article for more details: http://blog.golang.org/gopher
55