ESP-IDF + 0/2 examples
SourceVu will show references to httpd_req_get_hdr_value_str() from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsRelatedExamplesReferencesCall TreeData Use

Return value

- ESP_OK : Field found in the request header and value string copied - ESP_ERR_NOT_FOUND : Key not found - ESP_ERR_INVALID_ARG : Null arguments - ESP_ERR_HTTPD_INVALID_REQ : Invalid HTTP request pointer - ESP_ERR_HTTPD_RESULT_TRUNC : Value string truncated

Notes

- This API is supposed to be called only from the context of a URI handler where httpd_req_t* request pointer is valid. - Once httpd_resp_send() API is called all request headers are purged, so request headers need be copied into separate buffers if they are required later. - If output size is greater than input, then the value is truncated, accompanied by truncation error as return value. - Use httpd_req_get_hdr_value_len() to know the right buffer length

References

from 0/2 examples