diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-11-25 14:29:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 14:29:59 +0100 |
commit | 967cc2c014c7f6be67d249a87df871a08d56afff (patch) | |
tree | 35b71da6e88ec26130d3ef91730a8db5d3e48a30 /core/io/http_client.h | |
parent | 5378a8f5b0d58b1622e737a39823ef5639e58405 (diff) | |
parent | ed19b4076e0ec9252202086e65ffcc42510b6cdd (diff) | |
download | redot-engine-967cc2c014c7f6be67d249a87df871a08d56afff.tar.gz |
Merge pull request #33862 from Faless/net/http_request_chunk_size
Add download_chunk_size property to HTTPRequest.
Diffstat (limited to 'core/io/http_client.h')
-rw-r--r-- | core/io/http_client.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/io/http_client.h b/core/io/http_client.h index 85ee1959a2..ce7fe0491b 100644 --- a/core/io/http_client.h +++ b/core/io/http_client.h @@ -220,6 +220,7 @@ public: bool is_blocking_mode_enabled() const; void set_read_chunk_size(int p_size); + int get_read_chunk_size() const; Error poll(); |