From febc04527474adf2d8c5535c7977574aeecb3e31 Mon Sep 17 00:00:00 2001 From: Matteo Biscosi Date: Wed, 2 Oct 2024 11:45:32 +0200 Subject: [PATCH] Fixes missing function --- include/IpAddress.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/IpAddress.h b/include/IpAddress.h index 08e0a5356544..c7b5e865a649 100644 --- a/include/IpAddress.h +++ b/include/IpAddress.h @@ -132,6 +132,7 @@ class IpAddress { inline void setPopServer() { addr.popServer = true; } inline bool isNtpServer() const { return (addr.ntpServer); } inline void setNtpServer() { addr.ntpServer = true; } + inline bool isGateway() { return false; } char* print(char* str, u_int str_len, u_int8_t bitmask = 0xFF) const; char* printMask(char* str, u_int str_len, bool isLocalIP);