14 lines
204 B
C
14 lines
204 B
C
|
/* -*- c++ -*- */
|
||
|
#ifndef AGENTSTATS_H
|
||
|
#define AGENTSTATS_H
|
||
|
|
||
|
class AgentStats {
|
||
|
public:
|
||
|
uint64_t rx_bytes, tx_bytes;
|
||
|
uint64_t gets, sets, get_misses;
|
||
|
|
||
|
double start, stop;
|
||
|
};
|
||
|
|
||
|
#endif // AGENTSTATS_H
|