386320d266
This is extracted from another git repo. This is the first release, and the prior commit history is not terribly interesting, so I'm not going to bother using filter-branch to try to cleanly isolate the history for this tool. Cheers.
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
|