MEM: Add port proxies instead of non-structural ports
[gem5.git] / src / dev / etherdump.hh
index 1027ce4d01b9b01b9179120723ad087ce647870c..cc8fa9151262a11aec534e7385756d50221472da 100644 (file)
 #define __ETHERDUMP_H__
 
 #include <fstream>
+
 #include "dev/etherpkt.hh"
-#include "sim/sim_object.hh"
 #include "params/EtherDump.hh"
+#include "sim/sim_object.hh"
 
 /*
  * Simple object for creating a simple pcap style packet trace
 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:
     typedef EtherDumpParams Params;
     EtherDump(const Params *p);