mirror of https://github.com/tongzx/nt5src
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.
33 lines
468 B
33 lines
468 B
|
|
#ifndef _ULCTRS_H_
|
|
#define _ULCTRS_H_
|
|
|
|
|
|
|
|
//
|
|
// The ul counter object.
|
|
//
|
|
|
|
#define UL_COUNTER_OBJECT 0
|
|
|
|
|
|
//
|
|
// The individual counters.
|
|
//
|
|
|
|
#define UL_BYTES_SENT_COUNTER 2
|
|
#define UL_BYTES_RECEIVED_COUNTER 4
|
|
|
|
#define UL_CURRENT_CONNECTIONS_NUMBER 6
|
|
#define UL_CURRENT_REQUESTS_NUMBER 8
|
|
|
|
#define UL_QUEUED_REQUESTS_NUMBER 10
|
|
|
|
#define UL_ATTACHED_PROCESSES_NUMBER 12
|
|
|
|
|
|
|
|
#endif // _ULCTRS_H_
|
|
|
|
|
|
|