Searched refs:resp_hdrs (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-2.7.6/components/esp_http_server/src/ |
D | httpd_txrx.c | 189 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()
|
D | httpd_main.c | 355 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()
|
D | esp_httpd_priv.h | 99 } *resp_hdrs; /*!< Additional headers in response packet */ member
|
D | httpd_parse.c | 696 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/ |
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-2.7.6/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']
|