From fc0f3fd210223120a63e64cb707097b93568173a Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Fri, 22 Aug 2014 16:07:37 +0200 Subject: [PATCH] ia_na: use big-endian 1 as IAID --- src/dhcpv6.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dhcpv6.c b/src/dhcpv6.c index 0c98729..e52fd6c 100644 --- a/src/dhcpv6.c +++ b/src/dhcpv6.c @@ -366,7 +366,7 @@ static void dhcpv6_send(enum dhcpv6_msg type, uint8_t trid[3], uint32_t ecs) struct dhcpv6_ia_hdr hdr_ia_na = { htons(DHCPV6_OPT_IA_NA), htons(sizeof(hdr_ia_na) - 4), - 1, 0, 0 + htonl(1), 0, 0 }; struct dhcpv6_ia_addr pa[ia_na_entries]; -- 2.39.2