libipsec: Fix ip_packet_create_from_data() version field in IPv6 header

Closes strongswan/strongswan#92.

Signed-off-by: Matus Fabian <[email protected]>
This commit is contained in:
Matus Fabian
2018-03-19 11:01:10 +01:00
committed by Tobias Brunner
parent dc2dfedda9
commit 04ede658c8
+1 -1
View File
@@ -527,7 +527,7 @@ ip_packet_t *ip_packet_create_from_data(host_t *src, host_t *dst,
case AF_INET6:
{
struct ip6_hdr ip = {
.ip6_flow = htonl(6),
.ip6_flow = htonl(6 << 28),
.ip6_plen = htons(data.len),
.ip6_nxt = next_header,
.ip6_hlim = 0x80,