本站源代码
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

25 linhas
390B

  1. package ldap
  2. import (
  3. "log"
  4. "gopkg.in/asn1-ber.v1"
  5. )
  6. // debugging type
  7. // - has a Printf method to write the debug output
  8. type debugging bool
  9. // write debug output
  10. func (debug debugging) Printf(format string, args ...interface{}) {
  11. if debug {
  12. log.Printf(format, args...)
  13. }
  14. }
  15. func (debug debugging) PrintPacket(packet *ber.Packet) {
  16. if debug {
  17. ber.PrintPacket(packet)
  18. }
  19. }
上海开阖软件有限公司 沪ICP备12045867号-1