mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-02 00:09:36 +00:00
65a4472a0d
In general it seems a bad idea to have two http-strings.c files as this precludes to have them both in the Contiki library. However as it stands it seems most reasonable to have one http-strings.c file be a clean superset of all usecases in order to allow them to run together in a single binary. As webserver/http-strings.c already contained strings not present in webbrowser/http-strings.c it seems reasonable to consider webserver/http-strings.c as the superset described. From that perspective it is appropriate to remove all strings from webbrowser/http-strings.c which are not used by the web browser in order to save memory otherwise wasted.
13 lines
390 B
C
13 lines
390 B
C
extern const char http_http[8];
|
|
extern const char http_200[5];
|
|
extern const char http_301[5];
|
|
extern const char http_302[5];
|
|
extern const char http_get[5];
|
|
extern const char http_10[9];
|
|
extern const char http_11[9];
|
|
extern const char http_content_type[15];
|
|
extern const char http_location[11];
|
|
extern const char http_host[7];
|
|
extern const char http_crnl[3];
|
|
extern const char http_html[6];
|