libipsec: Fix ip_packet_create_from_data() version field in IPv6 header

Closes strongswan/strongswan#92.

Signed-off-by: Matus Fabian <matfabia@cisco.com>
This commit is contained in:
Matus Fabian 2018-03-19 02:19:45 -07:00 committed by Tobias Brunner
parent dc2dfedda9
commit 04ede658c8
1 changed files with 1 additions and 1 deletions

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,