Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By Darkeligos
#45959 So I've been looking around the source for a way to get the remote IP of a connected client with ESP8266WebServer, but found that it may only be possible with the WifiClient library. I noticed that the WebServer calls on WifiClient with:
Code: Select allserver.handleClient();


but I'm not sure that is helpful. Is there any way to get the remote IP with ESP8266WebServer?
User avatar
By Darkeligos
#45962
martinayotte wrote:I'm not sure I understand your question...
If you don't do regular calls to server.handleClient() in the loop(), your ESP8266WebServer will simply not work !


Sorry for the confusion, I just need to find the IP of the clients that connect to my ESP8266WebServer. I'm using the HelloServer example.