mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-20 21:01:17 +00:00
115182e445
* Define configuration for LDAP module * Implement LDAP auth * Vendor new dependencies * Add documentation for LDAP provider
24 lines
390 B
Go
24 lines
390 B
Go
package ldap
|
|
|
|
import (
|
|
"log"
|
|
|
|
"gopkg.in/asn1-ber.v1"
|
|
)
|
|
|
|
// debugging type
|
|
// - has a Printf method to write the debug output
|
|
type debugging bool
|
|
|
|
// write debug output
|
|
func (debug debugging) Printf(format string, args ...interface{}) {
|
|
if debug {
|
|
log.Printf(format, args...)
|
|
}
|
|
}
|
|
|
|
func (debug debugging) PrintPacket(packet *ber.Packet) {
|
|
if debug {
|
|
ber.PrintPacket(packet)
|
|
}
|
|
}
|