You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am porting an application from ESPWebServer to ESPWebServerSecure.
To send back to the client the content of a HTML page I just need to fill the String webpage and call these 5 functions:
so I would like to modify as little as possible these functions... the only problem is in the last line of SendHTML_Stop():
server.client().stop(); // Stop is needed because no content length was sent because there is no reference to the connected client.
Is there an equivalent way to obtain the same result?
Thanks.
The text was updated successfully, but these errors were encountered:
I am porting an application from ESPWebServer to ESPWebServerSecure.
To send back to the client the content of a HTML page I just need to fill the String webpage and call these 5 functions:
this is an example:
so I would like to modify as little as possible these functions... the only problem is in the last line of SendHTML_Stop():
server.client().stop(); // Stop is needed because no content length was sent because there is no reference to the connected client.
Is there an equivalent way to obtain the same result?
Thanks.
The text was updated successfully, but these errors were encountered: