summaryrefslogtreecommitdiff
path: root/accel-pppd/ipdb.c
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2018-01-13 15:24:21 +0300
committerDmitry Kozlov <xeb@mail.ru>2018-01-13 15:24:21 +0300
commit568d50a7b810349db9567622e37924d44ee22a2d (patch)
tree5465f10ca7453dbba0380a251dd034d53ca24670 /accel-pppd/ipdb.c
parentc87ad75fde8531ebd947ae19a25eded8340b5828 (diff)
parent28d4f7446c7e8e901109d1d90928c09b9ee4d49d (diff)
downloadaccel-ppp-568d50a7b810349db9567622e37924d44ee22a2d.tar.gz
accel-ppp-568d50a7b810349db9567622e37924d44ee22a2d.zip
Merge branch 'master' of https://github.com/xebd/accel-ppp
Diffstat (limited to 'accel-pppd/ipdb.c')
-rw-r--r--accel-pppd/ipdb.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/accel-pppd/ipdb.c b/accel-pppd/ipdb.c
index a7ef0a44..dd8c61c9 100644
--- a/accel-pppd/ipdb.c
+++ b/accel-pppd/ipdb.c
@@ -77,10 +77,14 @@ void __export build_ip6_addr(struct ipv6db_addr_t *a, uint64_t intf_id, struct i
{
memcpy(addr, &a->addr, sizeof(*addr));
+ if (a->prefix_len == 128)
+ return;
+
if (a->prefix_len <= 64)
*(uint64_t *)(addr->s6_addr + 8) = intf_id;
else
- *(uint64_t *)(addr->s6_addr + 8) |= intf_id & ((1 << (128 - a->prefix_len)) - 1);
+ *(uint64_t *)(addr->s6_addr + 8) |= intf_id & htobe64((1 << (128 - a->prefix_len)) - 1);
+
}
void __export ipdb_register(struct ipdb_t *ipdb)