Added GIF support to the CFS web server (which was already present in the non-CFS web server).

This commit is contained in:
oliverschmidt 2010-04-06 12:11:41 +00:00
parent 69b0727a6d
commit d1c4b4968c

View File

@ -30,7 +30,7 @@
* *
* Author: Adam Dunkels <adam@sics.se> * Author: Adam Dunkels <adam@sics.se>
* *
* $Id: httpd-cfs.c,v 1.17 2010/04/06 12:03:18 oliverschmidt Exp $ * $Id: httpd-cfs.c,v 1.18 2010/04/06 12:11:41 oliverschmidt Exp $
*/ */
#include <stdio.h> #include <stdio.h>
@ -114,6 +114,8 @@ PT_THREAD(send_headers(struct httpd_state *s, const char *statushdr))
ptr = http_content_type_css; ptr = http_content_type_css;
} else if(strcmp(http_png, ptr) == 0) { } else if(strcmp(http_png, ptr) == 0) {
ptr = http_content_type_png; ptr = http_content_type_png;
} else if(strcmp(http_gif, ptr) == 0) {
ptr = http_content_type_gif;
} else if(strcmp(http_jpg, ptr) == 0) { } else if(strcmp(http_jpg, ptr) == 0) {
ptr = http_content_type_jpg; ptr = http_content_type_jpg;
} else { } else {