2016-11-03 22:16:01 +00:00
|
|
|
package ldap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"gopkg.in/asn1-ber.v1"
|
|
|
|
)
|
|
|
|
|
2019-01-23 23:25:33 +00:00
|
|
|
// debugging type
|
2016-11-03 22:16:01 +00:00
|
|
|
// - 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)
|
|
|
|
}
|
|
|
|
}
|