Searched refs:gzipped (Results 1 – 5 of 5) sorted by relevance
/Zephyr-latest/subsys/net/lib/http/headers/ |
D | server_internal.h | 44 int http_server_find_file(char *fname, size_t fname_size, size_t *file_size, bool *gzipped);
|
/Zephyr-latest/subsys/net/lib/http/ |
D | http_server_http1.c | 394 bool gzipped = false; in handle_http1_static_fs_resource() local 430 ret = http_server_find_file(fname, sizeof(fname), &file_size, &gzipped); in handle_http1_static_fs_resource() 453 content_type, gzipped ? CONTENT_ENCODING_GZIP : ""); in handle_http1_static_fs_resource()
|
D | http_server_core.c | 751 int http_server_find_file(char *fname, size_t fname_size, size_t *file_size, bool *gzipped) in http_server_find_file() argument 762 *gzipped = (ret == 0); in http_server_find_file()
|
D | http_server_http2.c | 411 bool gzipped; in handle_http2_static_fs_resource() local 437 ret = http_server_find_file(fname, sizeof(fname), &client->data_len, &gzipped); in handle_http2_static_fs_resource() 458 if (gzipped) { in handle_http2_static_fs_resource()
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | http_server.rst | 209 gzipped, .gz must be appended to the file name (e.g. index.html.gz), then the
|