summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authortmfkams <tmfkams@gmail.com>2014-01-20 21:45:15 +0100
committerSamuel Stauffer <samuel@descolada.com>2014-03-19 21:57:58 +0100
commitfc33496b492e77008f1dd56637a58a9db50d0404 (patch)
tree169961a8efbc239fc5c2baf228684ccbe3baa766 /examples
parentdoc (diff)
downloadldap-fc33496b492e77008f1dd56637a58a9db50d0404.tar
ldap-fc33496b492e77008f1dd56637a58a9db50d0404.tar.gz
ldap-fc33496b492e77008f1dd56637a58a9db50d0404.tar.bz2
ldap-fc33496b492e77008f1dd56637a58a9db50d0404.tar.lz
ldap-fc33496b492e77008f1dd56637a58a9db50d0404.tar.xz
ldap-fc33496b492e77008f1dd56637a58a9db50d0404.tar.zst
ldap-fc33496b492e77008f1dd56637a58a9db50d0404.zip
Diffstat (limited to 'examples')
-rw-r--r--examples/searchSSL.go45
-rw-r--r--examples/searchTLS.go45
2 files changed, 90 insertions, 0 deletions
diff --git a/examples/searchSSL.go b/examples/searchSSL.go
new file mode 100644
index 0000000..b05ad85
--- /dev/null
+++ b/examples/searchSSL.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.
+
+// File contains a search example
+package main
+
+import (
+ "fmt"
+ "github.com/tmfkams/ldap"
+ "log"
+)
+
+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)
+}
diff --git a/examples/searchTLS.go b/examples/searchTLS.go
new file mode 100644
index 0000000..b8dc1c6
--- /dev/null
+++ b/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.
+
+// File contains a search example
+package main
+
+import (
+ "fmt"
+ "github.com/tmfkams/ldap"
+ "log"
+)
+
+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.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)
+}