Get rid of obsolete sim/sim_stats.* files (looks like these
[gem5.git] / dev / etherdump.hh
index b3aefeb741aac589fa90201c88af9a28837cc865..b127d05e2f4a31273b084551641118e17452a2ea 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003 The Regents of The University of Michigan
+ * Copyright (c) 2002-2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -43,8 +43,9 @@
 class EtherDump : public SimObject
 {
   private:
-    std::ofstream stream;
-    void dumpPacket(PacketPtr packet);
+    std::ostream *stream;
+    const int maxlen;
+    void dumpPacket(PacketPtr &packet);
     void init();
 
     Tick curtime;
@@ -52,9 +53,9 @@ class EtherDump : public SimObject
     Tick us_freq;
 
   public:
-    EtherDump(const std::string &name, const std::string &file);
+    EtherDump(const std::string &name, std::ostream *_stream, int max);
 
-    inline void dump(PacketPtr pkt) { if (stream.is_open()) dumpPacket(pkt); }
+    inline void dump(PacketPtr &pkt) { dumpPacket(pkt); }
 };
 
 #endif // __ETHERDUMP_H__