ip-packet: Fix length in IPv6 header of generated packets
This commit is contained in:
@@ -443,7 +443,7 @@ ip_packet_t *ip_packet_create_from_data(host_t *src, host_t *dst,
|
||||
{
|
||||
struct ip6_hdr ip = {
|
||||
.ip6_flow = htonl(6),
|
||||
.ip6_plen = htons(40 + data.len),
|
||||
.ip6_plen = htons(data.len),
|
||||
.ip6_nxt = next_header,
|
||||
.ip6_hlim = 0x80,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user