I have an esp8266 as webserver like the example WiFiHTTPServer. I'm sending the html page like this:
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:
index_html_gz[]={0x10.........0x20}
I already coded the html page using cyberchef.
Regards
Gastón