esp8266 html gzip
Posted: Tue May 04, 2021 5:04 pm
Hi to all,
I have an esp8266 as webserver like the example WiFiHTTPServer. I'm sending the html page like this:
I want to know if is possible to send the html page encoded in gzip in the form:
I already coded the html page using cyberchef.
Regards
Gastón
I have an esp8266 as webserver like the example WiFiHTTPServer. I'm sending the html page like this:
Code: Select all
client.print(header);
client.println(html_1);
client.print(html_2);
client.print(html_3);
client.println(html_4);
I want to know if is possible to send the html page encoded in gzip in the form:
Code: Select all
index_html_gz[]={0x10.........0x20}
I already coded the html page using cyberchef.
Regards
Gastón