Home
last modified time | relevance | path

Searched refs:content_type (Results 1 – 1 of 1) sorted by relevance

/DragonOS/user/apps/http_server/
H A Dmain.c39 char *content_type; in send_header() local
42 content_type = "text/html"; in send_header()
46 content_type = "text/css"; in send_header()
50 content_type = "application/javascript"; in send_header()
54 content_type = "image/png"; in send_header()
58 content_type = "image/jpeg"; in send_header()
62 content_type = "image/gif"; in send_header()
66 content_type = "text/plain;charset=utf-8"; in send_header()
68 …sprintf(buffer, "HTTP/1.1 200 OK\nContent-Type: %s\nContent-Length: %d\n\n", content_type, content… in send_header()