mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
Added GIF support to the CFS web server (which was already present in the non-CFS web server).
This commit is contained in:
parent
69b0727a6d
commit
d1c4b4968c
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user