X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fdev%2Fetherdump.hh;h=cc8fa9151262a11aec534e7385756d50221472da;hb=9957035a42653a0666e30c744ab02fb0074db3a3;hp=f3080f34147aeda2ee5013db199b1534049823d1;hpb=984c2a4ff677803ff7687a178f1dceb1f0204c30;p=gem5.git diff --git a/src/dev/etherdump.hh b/src/dev/etherdump.hh index f3080f341..cc8fa9151 100644 --- a/src/dev/etherdump.hh +++ b/src/dev/etherdump.hh @@ -36,7 +36,9 @@ #define __ETHERDUMP_H__ #include + #include "dev/etherpkt.hh" +#include "params/EtherDump.hh" #include "sim/sim_object.hh" /* @@ -45,15 +47,14 @@ class EtherDump : public SimObject { private: - std::ofstream stream; - const int maxlen; + std::ostream *stream; + const unsigned maxlen; void dumpPacket(EthPacketPtr &packet); void init(); - Tick curtime; - public: - EtherDump(const std::string &name, const std::string &file, int max); + typedef EtherDumpParams Params; + EtherDump(const Params *p); inline void dump(EthPacketPtr &pkt) { dumpPacket(pkt); } };