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.

57 lines
1.2 KiB

  1. //**************************************************
  2. // *** StreamFilter Trace Data Layout
  3. //**************************************************
  4. #pragma classflags("forceupdate")
  5. #pragma namespace ("\\\\.\\Root\\WMI")
  6. [Dynamic,
  7. Description("IIS: SSL Filter") : amended,
  8. Guid("{1fbecc45-c060-4e7c-8a0e-0dbd6116181b}"),
  9. locale("MS\\0x409")]
  10. class IIS_Filter_Trace:EventTrace
  11. {
  12. };
  13. [Dynamic,
  14. Description("IIS Filter Request") : amended,
  15. Guid("{0ecf983b-7115-4b77-a543-95d138ee4400}"),
  16. DisplayName("StrmFilt"),
  17. locale("MS\\0x409")
  18. ]
  19. class Stream_Filter_Trans:IIS_Filter_Trace
  20. {
  21. };
  22. [Dynamic,
  23. Description("Stream Filter TypeGroup"): amended,
  24. EventType{1, 2},
  25. EventTypeName{"Start", "End"} : amended
  26. ]
  27. class StrmTypeGroup1:Stream_Filter_Trans
  28. {
  29. };
  30. [Dynamic,
  31. Description("IIS Ssl Handshake Request") : amended,
  32. Guid("{d353dc2d-3e55-4b88-a4ac-183c368362a3}"),
  33. DisplayName("SslHandshake"),
  34. locale("MS\\0x409")
  35. ]
  36. class Ssl_Handshake:IIS_Filter_Trace
  37. {
  38. };
  39. [Dynamic,
  40. Description("SSL HandShake Event") : amended,
  41. EventType{1, 2},
  42. EventTypeName{"Start", "End"} : amended
  43. ]
  44. class SslHandShake_TypeGroup1:Ssl_Handshake
  45. {
  46. };