summaryrefslogtreecommitdiff
path: root/accel-pppd/ipdb.c
AgeCommit message (Collapse)Author
2026-07-12ipdb: fix undefined shift in build_ip6_addr() host-bits maskDenys Fedoryshchenko
For prefix lengths 65..127 the mask for the host bits was built with (1 << (128 - prefix_len)) - 1 using a plain int literal, which is undefined behavior for shift counts of 31 and above, i.e. for any prefix length from 65 to 97. Use a 64-bit constant for the shift.
2018-01-13ipv6: consolidate and fix interface-id address generation for non-/128Vladislav Grishenko
2017-10-16move build_ip6_addr function to ipdb.cDmitry Kozlov
2012-06-19general preparation for IPoE integrationKozlov Dmitry
2011-08-28ipdb: implement delegation prefix allocationKozlov Dmitry
2011-08-24ipdb: fix buf of ipv6 address putKozlov Dmitry
2011-02-08snapshotDmitry Kozlov
2011-01-05rename accel-pptp to accel-pppDmitry Kozlov