Searched refs:http_utils_get_string_between (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-3.6.0/components/esp_http_client/lib/include/ |
D | http_utils.h | 56 char *http_utils_get_string_between(const char *str, const char *begin, const char *end);
|
/hal_espressif-3.6.0/components/esp_http_client/lib/ |
D | http_utils.c | 109 char *http_utils_get_string_between(const char *str, const char *begin, const char *end) in http_utils_get_string_between() function
|
/hal_espressif-3.6.0/components/esp_http_client/ |
D | esp_http_client.c | 1542 client->auth_data->realm = http_utils_get_string_between(auth_header, "realm=\"", "\""); 1543 … client->auth_data->algorithm = http_utils_get_string_between(auth_header, "algorithm=", ","); 1547 client->auth_data->qop = http_utils_get_string_between(auth_header, "qop=\"", "\""); 1548 client->auth_data->nonce = http_utils_get_string_between(auth_header, "nonce=\"", "\""); 1549 client->auth_data->opaque = http_utils_get_string_between(auth_header, "opaque=\"", "\"");
|