Home
last modified time | relevance | path

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

/hal_espressif-2.7.6/components/esp_http_server/src/
Dhttpd_txrx.c189 ra->resp_hdrs[ra->resp_hdrs_count].field = field; in httpd_resp_set_hdr()
190 ra->resp_hdrs[ra->resp_hdrs_count].value = value; in httpd_resp_set_hdr()
271 if (httpd_send_all(r, ra->resp_hdrs[i].field, strlen(ra->resp_hdrs[i].field)) != ESP_OK) { in httpd_resp_send()
279 if (httpd_send_all(r, ra->resp_hdrs[i].value, strlen(ra->resp_hdrs[i].value)) != ESP_OK) { in httpd_resp_send()
339 … if (httpd_send_all(r, ra->resp_hdrs[i].field, strlen(ra->resp_hdrs[i].field)) != ESP_OK) { in httpd_resp_send_chunk()
347 … if (httpd_send_all(r, ra->resp_hdrs[i].value, strlen(ra->resp_hdrs[i].value)) != ESP_OK) { in httpd_resp_send_chunk()
Dhttpd_main.c355 ra->resp_hdrs = calloc(config->max_resp_headers, sizeof(struct resp_hdr)); in httpd_create()
356 if (!ra->resp_hdrs) { in httpd_create()
366 free(ra->resp_hdrs); in httpd_create()
382 free(ra->resp_hdrs); in httpd_delete()
Desp_httpd_priv.h99 } *resp_hdrs; /*!< Additional headers in response packet */ member
Dhttpd_parse.c696 memset(ra->resp_hdrs, 0, config->max_resp_headers * sizeof(struct resp_hdr)); in init_req_aux()
/hal_espressif-2.7.6/tools/ci/python_packages/idf_http_server_test/
Dclient.py56 resp_hdrs = resp.getheaders()
72 for k, v in resp_hdrs:
Dtest.py746 resp_hdrs = s.read_resp_hdrs()
753 if 'Custom' in resp_hdrs.keys():
754 resp_hdr_val = resp_hdrs['Custom']
/hal_espressif-2.7.6/examples/protocols/http_server/advanced_tests/scripts/
Dtest.py757 resp_hdrs = s.read_resp_hdrs()
764 if 'Custom' in resp_hdrs.keys():
765 resp_hdr_val = resp_hdrs['Custom']