We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0d8d4d commit c13d11eCopy full SHA for c13d11e
libraries/ESPmDNS/examples/mDNS_Web_Server/mDNS_Web_Server.ino
@@ -96,7 +96,6 @@ void loop(void)
96
req = req.substring(addr_start + 1, addr_end);
97
Serial.print("Request: ");
98
Serial.println(req);
99
- client.flush();
100
101
String s;
102
if (req == "/")
@@ -115,6 +114,7 @@ void loop(void)
115
114
}
116
client.print(s);
117
+ client.stop();
118
Serial.println("Done with client");
119
120
0 commit comments