Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the NetPacket CPAN distribution.

Report information
The Basics
Id: 56235
Status: resolved
Priority: 0/
Queue: NetPacket

People
Owner: Nobody in particular
Requestors: half [...] halssoftware.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: v0.42.0
Fixed in: (no value)



Subject: UDP Checksum Error
The UDP checksum calculation is wrong because the UDP length field was omitted from the pseudo-header. This can be fixed by applying the attached patch.
Subject: netpacket_udp_cksum_fix.patch
--- NetPacket/UDP.pm.orig 2010-03-30 13:27:41.000000000 -0400 +++ NetPacket/UDP.pm 2010-04-02 14:22:06.000000000 -0400 @@ -122,6 +122,7 @@ $dest_ip, 0, $proto, + $self->{len}, # proper UDP part $self->{src_port}, $self->{dest_port},
On Fri Apr 02 14:25:32 2010, HFINKEL wrote: Show quoted text
> The UDP checksum calculation is wrong because the UDP length field was > omitted from the pseudo-header. This can be fixed by applying the > attached patch.
Fixed in Github repo.
Sending the previous mail has failed. Please contact your admin, they can find more details in the logs.