Make IpMode members uppercase

This commit is contained in:
sgourdas
2024-09-24 20:08:11 +03:00
parent bef3ec7694
commit 8930095c52
3 changed files with 7 additions and 7 deletions

View File

@@ -16,7 +16,7 @@
namespace kiwix {
enum class IpMode { ipv4, ipv6, all };
enum class IpMode { IPV4, IPV6, ALL };
typedef zim::size_type size_type;
typedef zim::offset_type offset_type;

View File

@@ -81,7 +81,7 @@ namespace kiwix
bool m_withTaskbar = true;
bool m_withLibraryButton = true;
bool m_blockExternalLinks = false;
IpMode m_ipMode = IpMode::ipv4;
IpMode m_ipMode = IpMode::IPV4;
int m_ipConnectionLimit = 0;
std::unique_ptr<InternalServer> mp_server;
};