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.

26 lines
967 B

  1. #ifndef PERFMON_H
  2. #define PERFMON_H
  3. #define RADIUS_CLIENT_COUNTER_OBJECT 0
  4. // ADD
  5. #define AUTHREQSENT 2
  6. #define AUTHREQFAILED 4
  7. #define AUTHREQSUCCEDED 6
  8. #define AUTHREQTIMEOUT 8
  9. #define ACCTREQSENT 10
  10. #define ACCTBADPACK 12
  11. #define ACCTREQSUCCEDED 14
  12. #define ACCTREQTIMEOUT 16
  13. #define AUTHBADPACK 18
  14. extern LONG g_cAuthReqSent; // Auth Requests Sent
  15. extern LONG g_cAuthReqFailed; // Auth Requests Failed
  16. extern LONG g_cAuthReqSucceded; // Auth Requests Succeded
  17. extern LONG g_cAuthReqTimeout; // Auth Requests timeouts
  18. extern LONG g_cAcctReqSent; // Acct Requests Sent
  19. extern LONG g_cAcctBadPack; // Acct Bad Packets
  20. extern LONG g_cAcctReqSucceded; // Acct Requests Succeded
  21. extern LONG g_cAcctReqTimeout; // Acct Requests timeouts
  22. extern LONG g_cAuthBadPack; // Auth bad Packets
  23. #endif // PERFMON_H