mutilate/AgentStats.h

15 lines
222 B
C++

/* -*- c++ -*- */
#ifndef AGENTSTATS_H
#define AGENTSTATS_H
class AgentStats {
public:
uint64_t rx_bytes, tx_bytes;
uint64_t gets, sets, get_misses;
uint64_t skips;
double start, stop;
};
#endif // AGENTSTATS_H