diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-09-07 20:04:47 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-09-07 20:04:47 -0400 |
commit | 59a7c7c5a530cead1905c0c686869ea0f6a7949c (patch) | |
tree | 00e1e6a987b9fd032e24b2edd1603a0a711f3878 /modules/ldap/examples/searchTLS.go | |
parent | 25d6ae69d1cb392922b9d9dc0da1c17aef9a9db2 (diff) |
Remove ldap dep
Diffstat (limited to 'modules/ldap/examples/searchTLS.go')
-rw-r--r-- | modules/ldap/examples/searchTLS.go | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/modules/ldap/examples/searchTLS.go b/modules/ldap/examples/searchTLS.go new file mode 100644 index 00000000..a20bcc32 --- /dev/null +++ b/modules/ldap/examples/searchTLS.go @@ -0,0 +1,45 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + "log" + + "github.com/juju2013/goldap" +) + +var ( + LdapServer string = "localhost" + LdapPort uint16 = 389 + BaseDN string = "dc=enterprise,dc=org" + Filter string = "(cn=kirkj)" + Attributes []string = []string{"mail"} +) + +func main() { + l, err := ldap.DialTLS("tcp", fmt.Sprintf("%s:%d", LdapServer, LdapPort), nil) + if err != nil { + log.Fatalf("ERROR: %s\n", err.Error()) + } + defer l.Close() + // l.Debug = true + + search := ldap.NewSearchRequest( + BaseDN, + ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false, + Filter, + Attributes, + nil) + + sr, err := l.Search(search) + if err != nil { + log.Fatalf("ERROR: %s\n", err.Error()) + return + } + + log.Printf("Search: %s -> num of entries = %d\n", search.Filter, len(sr.Entries)) + sr.PrettyPrint(0) +} |