mirror of
https://github.com/rsmarples/dhcpcd.git
synced 2024-11-27 03:54:56 +08:00
DHCP6: Fix Prefix Delegation pltime and vltime
While here fix deleting non exteneded deprecated addresses
This commit is contained in:
parent
82c24ee1ad
commit
6cb9e8b74f
@ -2251,8 +2251,8 @@ dhcp6_findpd(struct interface *ifp, const uint8_t *iaid,
|
||||
memcpy(&pdp_plen, o, sizeof(pdp_plen));
|
||||
o += sizeof(pdp_plen);
|
||||
|
||||
pdp_pltime = (uint16_t)ntohl(pdp_pltime);
|
||||
pdp_vltime = (uint16_t)ntohl(pdp_vltime);
|
||||
pdp_pltime = ntohl(pdp_pltime);
|
||||
pdp_vltime = ntohl(pdp_vltime);
|
||||
/* RFC 3315 22.6 */
|
||||
if (pdp_pltime > pdp_vltime) {
|
||||
errno = EINVAL;
|
||||
@ -2561,7 +2561,7 @@ dhcp6_deprecateaddrs(struct ipv6_addrhead *addrs)
|
||||
continue;
|
||||
}
|
||||
TAILQ_REMOVE(addrs, ia, next);
|
||||
if (ia->flags & IPV6_AF_EXTENDED)
|
||||
if (!(ia->flags & IPV6_AF_EXTENDED))
|
||||
ipv6_deleteaddr(ia);
|
||||
ipv6_freeaddr(ia);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user