Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
25 lines
390 B
25 lines
390 B
8 years ago
|
package ldap
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
|
||
|
"gopkg.in/asn1-ber.v1"
|
||
|
)
|
||
|
|
||
|
// debbuging 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)
|
||
|
}
|
||
|
}
|