Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
547 B
30 lines
547 B
package ldap |
|
|
|
import ( |
|
"log" |
|
|
|
ber "github.com/go-asn1-ber/asn1-ber" |
|
) |
|
|
|
// debugging type |
|
// - has a Printf method to write the debug output |
|
type debugging bool |
|
|
|
// Enable controls debugging mode. |
|
func (debug *debugging) Enable(b bool) { |
|
*debug = debugging(b) |
|
} |
|
|
|
// Printf writes debug output. |
|
func (debug debugging) Printf(format string, args ...interface{}) { |
|
if debug { |
|
log.Printf(format, args...) |
|
} |
|
} |
|
|
|
// PrintPacket dumps a packet. |
|
func (debug debugging) PrintPacket(packet *ber.Packet) { |
|
if debug { |
|
ber.PrintPacket(packet) |
|
} |
|
}
|
|
|