I am currently studying the "httpsrv" example project from MQX 4.0 and I would like to know how the HTTPD server determines the value of Content-Type in the HTTP reply's header ? Is it deduced from the extension of the file, ie ".html" files automatically lead to "text/html" and ".js" files to "application/javascript" ?
Also, I would like to try and gzip the pages to gain some space. Is the Content-Encoding header set to "gzip" in this case ?
Many thanks to anyone who can answer !
Best regards,
AV
Solved! Go to Solution.
Hi AV,
c:\Freescale\Freescale_MQX_4_0\rtcs\source\httpd\httpd_supp.c
function httpd_sendfile()
Contenttype is based on the file extension.
Hi AV,
c:\Freescale\Freescale_MQX_4_0\rtcs\source\httpd\httpd_supp.c
function httpd_sendfile()
Contenttype is based on the file extension.
Thanks a lot !