components.go 790 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (c) 2013 IBM Corp.
  3. *
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution, and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Seth Hoenig
  11. * Allan Stockdill-Mander
  12. * Mike Robertson
  13. */
  14. package mqtt
  15. type component string
  16. // Component names for debug output
  17. const (
  18. NET component = "[net] "
  19. PNG component = "[pinger] "
  20. CLI component = "[client] "
  21. DEC component = "[decode] "
  22. MES component = "[message] "
  23. STR component = "[store] "
  24. MID component = "[msgids] "
  25. TST component = "[test] "
  26. STA component = "[state] "
  27. ERR component = "[error] "
  28. ROU component = "[router] "
  29. )