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-12-11 06:22:17 +0100
commit77366185a8ad25c872c50eb11a8403920cd34fd4 (patch)
tree170bfb45fa5799c2078f8a33d91e59f87f78df72 /radix-trie.h
parentRename struct ip_pool to be more descriptive (diff)
downloadwg-dynamic-77366185a8ad25c872c50eb11a8403920cd34fd4.tar.xz
wg-dynamic-77366185a8ad25c872c50eb11a8403920cd34fd4.zip
radix-trie: allow full use of the v4 address space
Diffstat (limited to 'radix-trie.h')
-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;