You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In __str__ in the class IP6, IP6 sets the checksum of the payload (TCP or
ICMP6) to
self.data.sum = dpkt.in_cksum_done(s + self.nxt + len(p))
The correct statement is
self.data.sum = dpkt.in_cksum_done(s + socket.htons(self.nxt + len(p)))
Original issue reported on code.google.com by avkulka...@gmail.com on 15 Aug 2008 at 5:39
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
avkulka...@gmail.com
on 15 Aug 2008 at 5:39The text was updated successfully, but these errors were encountered: