forked from I2P_Developers/i2p.i2p
EepGet: Fix PcapWriter
This commit is contained in:
@ -232,7 +232,7 @@ public class PcapWriter {
|
||||
// wireshark wants the seq # in a SYN packet to be one less than the first data packet,
|
||||
// so let's set it to 0. ???????????
|
||||
if (pkt.isFlagSet(Packet.FLAG_SYNCHRONIZE))
|
||||
seq = 0xffffffff;
|
||||
seq = 0xffffffffL;
|
||||
else
|
||||
seq = pkt.getSequenceNum();
|
||||
DataHelper.writeLong(_fos, 4, seq);
|
||||
|
Reference in New Issue
Block a user