aboutsummaryrefslogtreecommitdiffstats
path: root/radix-trie.h
diff options
context:
space:
mode:
authorThomas Gschwantner <tharre3@gmail.com>2019-09-29 21:00:45 +0200
committerThomas Gschwantner <tharre3@gmail.com>2019-09-29 21:00:45 +0200
commitf73da8f4118142ad06e1fbd0d711fadc9c8c1975 (patch)
treed7c867ea023de3c29b4d965e0b550d54c0b32aff /radix-trie.h
parentRename struct ip_pool to be more descriptive (diff)
downloadwg-dynamic-f73da8f4118142ad06e1fbd0d711fadc9c8c1975.tar.xz
wg-dynamic-f73da8f4118142ad06e1fbd0d711fadc9c8c1975.zip
radix-trie: allow full use of the v4 address space
Diffstat (limited to '')
-rw-r--r--radix-trie.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/radix-trie.h b/radix-trie.h
index 4fa909b..d3599dc 100644
--- a/radix-trie.h
+++ b/radix-trie.h
@@ -12,8 +12,8 @@
struct ipns {
/* Total amount of available addresses over all pools */
- uint64_t totall_ipv6;
- uint32_t totalh_ipv6, total_ipv4;
+ uint64_t totall_ipv6, total_ipv4;
+ uint32_t totalh_ipv6;
struct radix_node *ip4_root, *ip6_root;
struct radix_pool *ip4_pools, *ip6_pools;