mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2026-01-27 09:12:18 +01:00
FIx ambiguity with IPAddress(0U)
This commit is contained in:
@@ -798,7 +798,7 @@ void AsyncWebSocketClient::binary(const __FlashStringHelper *data, size_t len)
|
||||
IPAddress AsyncWebSocketClient::remoteIP() const
|
||||
{
|
||||
if (!_client)
|
||||
return IPAddress(0U);
|
||||
return IPAddress((uint32_t)0U);
|
||||
|
||||
return _client->remoteIP();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user