Searched refs:supported_compression (Results 1 – 6 of 6) sorted by relevance
/Zephyr-latest/subsys/net/lib/http/ |
D | http_compression.c | 26 uint8_t *supported_compression) in http_compression_parse_accept_encoding() argument 34 *supported_compression = HTTP_NONE; in http_compression_parse_accept_encoding() 67 WRITE_BIT(*supported_compression, detected_compression, true); in http_compression_parse_accept_encoding()
|
D | http_server_core.c | 790 uint8_t supported_compression, enum http_compression *chosen_compression) in http_server_find_file() argument 799 if (IS_BIT_SET(supported_compression, HTTP_BR)) { in http_server_find_file() 807 if (IS_BIT_SET(supported_compression, HTTP_GZIP)) { in http_server_find_file() 815 if (IS_BIT_SET(supported_compression, HTTP_ZSTD)) { in http_server_find_file() 823 if (IS_BIT_SET(supported_compression, HTTP_COMPRESS)) { in http_server_find_file() 831 if (IS_BIT_SET(supported_compression, HTTP_DEFLATE)) { in http_server_find_file()
|
D | http_server_http1.c | 519 ret = http_server_find_file(fname, sizeof(fname), &file_size, client->supported_compression, in handle_http1_static_fs_resource() 815 &ctx->supported_compression); in on_header_value()
|
D | http_server_http2.c | 497 client->supported_compression, &chosen_compression); in handle_http2_static_fs_resource() 1405 &client->supported_compression); in process_header()
|
/Zephyr-latest/subsys/net/lib/http/headers/ |
D | server_internal.h | 42 uint8_t *supported_compression); 54 uint8_t supported_compression, enum http_compression *chosen_compression);
|
/Zephyr-latest/include/zephyr/net/http/ |
D | server.h | 490 IF_ENABLED(CONFIG_HTTP_SERVER_COMPRESSION, (uint8_t supported_compression));
|