diff options
author | Shauren <shauren.trinity@gmail.com> | 2023-07-15 00:45:16 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2023-07-15 00:45:16 +0200 |
commit | 6be536a73bc8a6e331ce20e7d19e2ea56b99b4d0 (patch) | |
tree | 2ad2ae6d9f4096c97235063eff60e7d69641a2b9 /src/common/Asio/IpAddress.h | |
parent | cdfaecda52e165bb04381e1677108ff87b8bdf13 (diff) |
Core/Network: Refactor local/remote ip address selection code and allow using hostnames in LoginREST bnetserver config options
Diffstat (limited to 'src/common/Asio/IpAddress.h')
-rw-r--r-- | src/common/Asio/IpAddress.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Asio/IpAddress.h b/src/common/Asio/IpAddress.h index 30500d662c6..22af8bbfd41 100644 --- a/src/common/Asio/IpAddress.h +++ b/src/common/Asio/IpAddress.h @@ -27,6 +27,7 @@ namespace Trinity { using boost::asio::ip::make_address; using boost::asio::ip::make_address_v4; + using boost::asio::ip::make_address_v6; inline uint32 address_to_uint(boost::asio::ip::address_v4 const& address) { return address.to_uint(); } } } |