Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/esp_http_server/src/
Dhttpd_txrx.c181 ra->resp_hdrs[ra->resp_hdrs_count].field = field; in httpd_resp_set_hdr()
182 ra->resp_hdrs[ra->resp_hdrs_count].value = value; in httpd_resp_set_hdr()
263 if (httpd_send_all(r, ra->resp_hdrs[i].field, strlen(ra->resp_hdrs[i].field)) != ESP_OK) { in httpd_resp_send()
271 if (httpd_send_all(r, ra->resp_hdrs[i].value, strlen(ra->resp_hdrs[i].value)) != ESP_OK) { in httpd_resp_send()
331 … if (httpd_send_all(r, ra->resp_hdrs[i].field, strlen(ra->resp_hdrs[i].field)) != ESP_OK) { in httpd_resp_send_chunk()
339 … 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.c358 ra->resp_hdrs = calloc(config->max_resp_headers, sizeof(struct resp_hdr)); in httpd_create()
359 if (!ra->resp_hdrs) { in httpd_create()
369 free(ra->resp_hdrs); in httpd_create()
385 free(ra->resp_hdrs); in httpd_delete()
Desp_httpd_priv.h92 } *resp_hdrs; /*!< Additional headers in response packet */ member
Dhttpd_parse.c688 memset(ra->resp_hdrs, 0, config->max_resp_headers * sizeof(struct resp_hdr)); in init_req_aux()
/hal_espressif-3.6.0/examples/protocols/http_server/captive_portal/
Dexample_test.py46 resp_hdrs = resp.getheaders()
51 for hdr in resp_hdrs:
/hal_espressif-3.6.0/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-3.6.0/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']