I had a Webserver running on an Arduino Uno using the “Ethercard” library together with “tinyFAT” SD library
There it was possible to get the target IP address, if a section was uncommented in the example code
/* uncomment this if you want to have printed the ip of the target browser
Serial.print("content send to ");
for(int i=30; i<34; i++) {
Serial.print(Ethernet::buffer[i]);
if (i<33) Serial.print(".");
}
Serial.println(" ");
*/
Is it possible to read the target IP using the “ESP8266WebServer”library?
The original web server in running perfectly on the ESP8266, but it would be real nice to know who is trying to access it
HansP