2016-11-03 22:16:01 +00:00
|
|
|
package ldap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
2020-10-15 19:27:33 +00:00
|
|
|
ber "github.com/go-asn1-ber/asn1-ber"
|
2016-11-03 22:16:01 +00:00
|
|
|
)
|
|
|
|
|
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
|
|
|
|
|
2020-10-15 19:27:33 +00:00
|
|
|
// Enable controls debugging mode.
|
|
|
|
func (debug *debugging) Enable(b bool) {
|
|
|
|
*debug = debugging(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Printf writes debug output.
|
2016-11-03 22:16:01 +00:00
|
|
|
func (debug debugging) Printf(format string, args ...interface{}) {
|
|
|
|
if debug {
|
|
|
|
log.Printf(format, args...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-15 19:27:33 +00:00
|
|
|
// PrintPacket dumps a packet.
|
2016-11-03 22:16:01 +00:00
|
|
|
func (debug debugging) PrintPacket(packet *ber.Packet) {
|
|
|
|
if debug {
|
|
|
|
ber.PrintPacket(packet)
|
|
|
|
}
|
|
|
|
}
|