Bugfix: Corrected wireshark bad FCS errors in COOJA Pcap export

This commit is contained in:
Laurent Deru 2013-04-09 00:18:19 +02:00 committed by Sébastien Dawans
parent f606322ae0
commit d1f12638b4

View file

@ -39,7 +39,7 @@ public class PcapExporter {
out.writeInt((int) System.currentTimeMillis() / 1000);
out.writeInt((int) ((System.currentTimeMillis() % 1000) * 1000));
out.writeInt(data.length);
out.writeInt(data.length);
out.writeInt(data.length+2);
/* and the data */
out.write(data);
out.flush();