client() method
Opened this issue · 3 comments
There used to be a WiFiClient& client() method in WebServer
I was using it to get remoteIP() of clients.
Is it possible to make it available in ESPWebServerSecure? If not, is there any alternative way to gete remoteIP()
See this comment, but I'll leave the issue open for now, since you're not the first asking. Maybe there's a way to return a modified version of WiFiClient
if that isn't declared final...
I too am trying to get remoteIP() of clients.
I can use server.client().remoteIP() with ESP8266WebServer library.
I can use req->getClientIP() with ESPWebServerSecure library.
I would really appreciate help finding a way to do this with esp32_https_server_compat library.
Many thanks for creating and supporting this library
There doesn't seem to be any other easy to use Secure Webserver available for ESP32/Arduino.
Is there by chance any update on this?