Searched refs:resp_hdrs (Results 1 – 8 of 8) sorted by relevance
/hal_espressif-3.6.0/components/esp_http_server/src/ |
D | httpd_txrx.c | 181 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()
|
D | httpd_main.c | 358 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()
|
D | esp_httpd_priv.h | 92 } *resp_hdrs; /*!< Additional headers in response packet */ member
|
D | httpd_parse.c | 688 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/ |
D | example_test.py | 46 resp_hdrs = resp.getheaders() 51 for hdr in resp_hdrs:
|
/hal_espressif-3.6.0/tools/ci/python_packages/idf_http_server_test/ |
D | client.py | 56 resp_hdrs = resp.getheaders() 72 for k, v in resp_hdrs:
|
D | test.py | 746 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/ |
D | test.py | 757 resp_hdrs = s.read_resp_hdrs() 764 if 'Custom' in resp_hdrs.keys(): 765 resp_hdr_val = resp_hdrs['Custom']
|