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
26 lines
967 B
#ifndef PERFMON_H
|
|
#define PERFMON_H
|
|
|
|
#define RADIUS_CLIENT_COUNTER_OBJECT 0
|
|
// ADD
|
|
#define AUTHREQSENT 2
|
|
#define AUTHREQFAILED 4
|
|
#define AUTHREQSUCCEDED 6
|
|
#define AUTHREQTIMEOUT 8
|
|
#define ACCTREQSENT 10
|
|
#define ACCTBADPACK 12
|
|
#define ACCTREQSUCCEDED 14
|
|
#define ACCTREQTIMEOUT 16
|
|
#define AUTHBADPACK 18
|
|
|
|
extern LONG g_cAuthReqSent; // Auth Requests Sent
|
|
extern LONG g_cAuthReqFailed; // Auth Requests Failed
|
|
extern LONG g_cAuthReqSucceded; // Auth Requests Succeded
|
|
extern LONG g_cAuthReqTimeout; // Auth Requests timeouts
|
|
extern LONG g_cAcctReqSent; // Acct Requests Sent
|
|
extern LONG g_cAcctBadPack; // Acct Bad Packets
|
|
extern LONG g_cAcctReqSucceded; // Acct Requests Succeded
|
|
extern LONG g_cAcctReqTimeout; // Acct Requests timeouts
|
|
extern LONG g_cAuthBadPack; // Auth bad Packets
|
|
|
|
#endif // PERFMON_H
|