Leaked source code of windows server 2003
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.

65 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. debug.h
  5. Abstract:
  6. This file contains debugging macros for the DHCP server.
  7. Author:
  8. Manny Weiser (mannyw) 10-Oct-1992
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. Madan Appiah (madana) 21-Oct-1993
  13. --*/
  14. #if DBG
  15. //
  16. // Critical debug output flags.
  17. //
  18. #define DEBUG_ERRORS 0x00000001
  19. #define DEBUG_PROTOCOL 0x00000002
  20. #define DEBUG_LEASE 0x00000004
  21. #define DEBUG_MISC 0x00000008
  22. #define DEBUG_INIT 0x00000010
  23. #define DEBUG_TIMESTAMP 0x00000020
  24. #define DEBUG_ASSERT 0x00001000
  25. #define DEBUG_TRACK 0x00002000
  26. //
  27. // more verbose debug output flags.
  28. //
  29. #define DEBUG_PROTOCOL_DUMP 0x00010000
  30. #define DEBUG_STACK 0x00020000
  31. #define DEBUG_TCP_INFO 0x00040000
  32. #define DEBUG_DNS 0x00080000
  33. #define DEBUG_MEDIA 0x00100000
  34. #define DEBUG_PING 0x00200000
  35. #define DEBUG_BACKDOOR 0x01000000
  36. #define DEBUG_ALLOC 0x02000000
  37. #define DEBUG_PERF 0x04000000
  38. #define DEBUG_TRACE 0x08000000
  39. #define DEBUG_API 0x10000000
  40. #define DEBUG_OPTIONS 0x20000000
  41. #define DEBUG_BREAK_POINT 0x40000000
  42. #define DEBUG_TRACE_CALLS 0x80000000
  43. #endif DBG