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.

126 lines
2.8 KiB

  1. //*********************************************
  2. // *** Active Directory Service Provider: NetLogon
  3. //*********************************************
  4. #pragma classflags("forceupdate")
  5. #pragma namespace ("\\\\.\\Root\\WMI")
  6. [Dynamic,
  7. Description("Active Directory: NetLogon") : amended,
  8. Guid("{f33959b4-dbec-11d2-895b-00c04f79ab69}"),
  9. locale("MS\\0x409")]
  10. class MSNetLogonTrace:EventTrace
  11. {
  12. };
  13. [Dynamic,
  14. Description("NetLogon Server Authentication") : amended,
  15. Guid("{393da8c0-dbed-11d2-895b-00c04f79ab69}"),
  16. DisplayName("NlServerAuth"),
  17. locale("MS\\0x409")
  18. ]
  19. class NlServerAuth:MSNetLogonTrace
  20. {
  21. };
  22. [Dynamic,
  23. Description("NetLogon Server Authentication") : amended,
  24. EventType(1),
  25. EventTypeName("Start"),
  26. locale("MS\\0x409")
  27. ]
  28. class NlServerAuth_Start:NlServerAuth
  29. {
  30. [WmiDataId(1),
  31. Description("Client") : amended,
  32. StringTermination("NullTerminated"),
  33. format("w"),
  34. read]
  35. string Client;
  36. [WmiDataId(2),
  37. Description("Account") : amended,
  38. StringTermination("NullTerminated"),
  39. format("w"),
  40. read]
  41. string Account;
  42. [WmiDataId(3),
  43. Description("Channel Type") : amended,
  44. format("x"),
  45. read]
  46. uint32 ChannelType;
  47. [WmiDataId(4),
  48. Description("Negotiated Flags") : amended,
  49. format("x"),
  50. read]
  51. uint32 NegotiatedFlags;
  52. };
  53. [Dynamic,
  54. Description("NetLogon Server Authentication") : amended,
  55. EventType(2),
  56. EventTypeName("End"),
  57. locale("MS\\0x409")
  58. ]
  59. class NlServerAuth_End:NlServerAuth
  60. {
  61. [WmiDataId(1),
  62. Description("Client") : amended,
  63. StringTermination("NullTerminated"),
  64. format("w"),
  65. read]
  66. string Client;
  67. [WmiDataId(2),
  68. Description("Account") : amended,
  69. StringTermination("NullTerminated"),
  70. format("w"),
  71. read]
  72. string Account;
  73. [WmiDataId(3),
  74. Description("Channel Type") : amended,
  75. format("x"),
  76. read]
  77. uint32 ChannelType;
  78. [WmiDataId(4),
  79. Description("Negotiated Flags") : amended,
  80. format("x"),
  81. read]
  82. uint32 NegotiatedFlags;
  83. [WmiDataId(5),
  84. Description("Status") : amended,
  85. format("x"),
  86. read]
  87. uint32 Status;
  88. };
  89. [Dynamic,
  90. Description("NetLogon Secure Channel Setup") : amended,
  91. Guid("{63dbb180-dbed-11d2-895b-00c04f79ab69}"),
  92. DisplayName("NlSecChanlSetup"),
  93. locale("MS\\0x409")
  94. ]
  95. class NlSecChanlSetup:MSNetLogonTrace
  96. {
  97. };
  98. [Dynamic,
  99. Description("NetLogon Secure Channel Setup") : amended,
  100. EventType(1),
  101. EventTypeName("Start"),
  102. locale("MS\\0x409")
  103. ]
  104. class NlSecChanlSetup_Start:NlSecChanlSetup
  105. {
  106. };
  107. [Dynamic,
  108. Description("NetLogon Secure Channel Setup") : amended,
  109. EventType(2),
  110. EventTypeName("End"),
  111. locale("MS\\0x409")
  112. ]
  113. class NlSecChanlSetup_End:NlSecChanlSetup
  114. {
  115. };