2016-07-26 01:30:28 +05:30
|
|
|
package ldap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"gopkg.in/asn1-ber.v1"
|
|
|
|
)
|
|
|
|
|
2018-11-13 00:09:20 +05:30
|
|
|
// debugging type
|
2016-07-26 01:30:28 +05:30
|
|
|
// - 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)
|
|
|
|
}
|
|
|
|
}
|