From 14e0cc15c1b7e268949cbeca46f447d93da64506 Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Sun, 23 Sep 2018 09:47:18 -0700 Subject: [PATCH] upgrade documentation --- include/llarp/handlers/tun.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/llarp/handlers/tun.hpp b/include/llarp/handlers/tun.hpp index 8d3a9ed42..61302d6ff 100644 --- a/include/llarp/handlers/tun.hpp +++ b/include/llarp/handlers/tun.hpp @@ -119,16 +119,16 @@ namespace llarp /// for netns) struct dotLokiLookup dll; - /// maps ip to service address + /// maps ip to service address (host byte order) std::unordered_map< uint32_t, service::Address > m_IPToAddr; - /// maps service address to ip + /// maps service address to ip (host byte order) std::unordered_map< service::Address, uint32_t, service::Address::Hash > m_AddrToIP; /// maps ip address to timestamp last active std::unordered_map< uint32_t, llarp_time_t > m_IPActivity; - /// our ip address + /// our ip address (host byte order) uint32_t m_OurIP; - /// next ip address to allocate + /// next ip address to allocate (host byte order) uint32_t m_NextIP; /// highest ip address to allocate uint32_t m_MaxIP;