|
ESPHome 2026.1.4
|
#include <http_request_host.h>
Public Member Functions | |
| int | read (uint8_t *buf, size_t max_len) override |
| void | end () override |
Public Member Functions inherited from esphome::http_request::HttpContainer | |
| virtual | ~HttpContainer ()=default |
| void | set_secure (bool secure) |
| void | set_chunked (bool chunked) |
| size_t | get_bytes_read () const |
| bool | is_read_complete () const |
| Check if all expected content has been read For chunked responses, returns false (completion detected via read() returning error/EOF) | |
| std::map< std::string, std::list< std::string > > | get_response_headers () |
| Get response headers. | |
| std::string | get_response_header (const std::string &header_name) |
Public Member Functions inherited from esphome::Parented< HttpRequestComponent > | |
| Parented () | |
| Parented (HttpRequestComponent *parent) | |
| HttpRequestComponent * | get_parent () const |
| Get the parent of this object. | |
| void | set_parent (HttpRequestComponent *parent) |
| Set the parent of this object. | |
Protected Attributes | |
| std::vector< uint8_t > | response_body_ {} |
Protected Attributes inherited from esphome::http_request::HttpContainer | |
| size_t | bytes_read_ {0} |
| bool | secure_ {false} |
| bool | is_chunked_ {false} |
| True if response uses chunked transfer encoding. | |
| std::map< std::string, std::list< std::string > > | response_headers_ {} |
Protected Attributes inherited from esphome::Parented< HttpRequestComponent > | |
| HttpRequestComponent * | parent_ |
Additional Inherited Members | |
Data Fields inherited from esphome::http_request::HttpContainer | |
| size_t | content_length {0} |
| int | status_code {-1} |
| -1 indicates no response received yet | |
| uint32_t | duration_ms {0} |
Definition at line 9 of file http_request_host.h.
|
overridevirtual |
Implements esphome::http_request::HttpContainer.
Definition at line 135 of file http_request_host.cpp.
|
overridevirtual |
Implements esphome::http_request::HttpContainer.
Definition at line 127 of file http_request_host.cpp.
|
protected |
Definition at line 16 of file http_request_host.h.