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 /scene/main/http_request.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 'scene/main/http_request.h')
| -rw-r--r-- | scene/main/http_request.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/main/http_request.h b/scene/main/http_request.h index f1f91235a6..fa01172d9f 100644 --- a/scene/main/http_request.h +++ b/scene/main/http_request.h @@ -126,6 +126,9 @@ public: void set_download_file(const String &p_file); String get_download_file() const; + void set_download_chunk_size(int p_chunk_size); + int get_download_chunk_size() const; + void set_body_size_limit(int p_bytes); int get_body_size_limit() const; |
