aboutsummaryrefslogtreecommitdiff
path: root/modules/ldap/examples/searchSSL.go
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-09-07 20:11:13 -0400
committerUnknwon <joe2010xtmf@163.com>2014-09-07 20:11:13 -0400
commitd89e630bc0cfb228db632c8b3f369f7dbd80bd02 (patch)
treeb590d51b8a8b76342c3a4190eaa59d9447270f72 /modules/ldap/examples/searchSSL.go
parent59a7c7c5a530cead1905c0c686869ea0f6a7949c (diff)
Fix test cases
Diffstat (limited to 'modules/ldap/examples/searchSSL.go')
-rw-r--r--modules/ldap/examples/searchSSL.go45
1 files changed, 0 insertions, 45 deletions
diff --git a/modules/ldap/examples/searchSSL.go b/modules/ldap/examples/searchSSL.go
deleted file mode 100644
index a98ca3a4..00000000
--- a/modules/ldap/examples/searchSSL.go
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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 = 636
- BaseDN string = "dc=enterprise,dc=org"
- Filter string = "(cn=kirkj)"
- Attributes []string = []string{"mail"}
-)
-
-func main() {
- l, err := ldap.DialSSL("tcp", fmt.Sprintf("%s:%d", LdapServer, LdapPort), nil)
- if err != nil {
- log.Fatalf("ERROR: %s\n", err.String())
- }
- 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.String())
- return
- }
-
- log.Printf("Search: %s -> num of entries = %d\n", search.Filter, len(sr.Entries))
- sr.PrettyPrint(0)
-}