diff options
author | John Weldon <johnweldon4@gmail.com> | 2014-04-16 03:02:01 +0200 |
---|---|---|
committer | John Weldon <johnweldon4@gmail.com> | 2014-04-16 03:02:01 +0200 |
commit | 6b7bf8da555e67d588ae8841ef67d28b9bcb0711 (patch) | |
tree | 38921b54964728405196d5a171d75183ae5c08a4 | |
parent | update references (diff) | |
download | ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.gz ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.bz2 ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.lz ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.xz ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.zst ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.zip |
Diffstat (limited to '')
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | bind.go | 2 | ||||
-rw-r--r-- | conn.go | 2 | ||||
-rw-r--r-- | control.go | 2 | ||||
-rw-r--r-- | debug.go | 2 | ||||
-rw-r--r-- | filter.go | 2 | ||||
-rw-r--r-- | filter_test.go | 2 | ||||
-rw-r--r-- | ldap.go | 2 | ||||
-rw-r--r-- | modify.go | 2 | ||||
-rw-r--r-- | search.go | 2 |
10 files changed, 10 insertions, 10 deletions
@@ -1,7 +1,7 @@ Basic LDAP v3 functionality for the GO programming language. Required Librarys: - github.com/SpruceHealth/asn1-ber + github.com/johnweldon/asn1-ber Working: Connecting to LDAP server @@ -7,7 +7,7 @@ package ldap import ( "errors" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) func (l *Conn) Bind(username, password string) error { @@ -11,7 +11,7 @@ import ( "net" "sync" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) const ( @@ -7,7 +7,7 @@ package ldap import ( "fmt" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) const ( @@ -3,7 +3,7 @@ package ldap import ( "log" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) // debbuging type @@ -8,7 +8,7 @@ import ( "errors" "fmt" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) const ( diff --git a/filter_test.go b/filter_test.go index 1df4814..9e83195 100644 --- a/filter_test.go +++ b/filter_test.go @@ -3,7 +3,7 @@ package ldap import ( "testing" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) type compileTest struct { @@ -9,7 +9,7 @@ import ( "fmt" "io/ioutil" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) // LDAP Application Codes @@ -33,7 +33,7 @@ import ( "errors" "log" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) const ( @@ -64,7 +64,7 @@ import ( "fmt" "strings" - "github.com/SpruceHealth/asn1-ber" + "github.com/johnweldon/asn1-ber" ) const ( |