diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2016-12-01 09:01:09 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2016-12-09 18:24:59 +0100 |
commit | a77a0118f6b0d0878a53e2c963d91763b311163d (patch) | |
tree | 159cbc303043c429cfdbe6f9cd4498bbde15ec46 /scene/main/http_request.cpp | |
parent | c18c5013f837ea7d4de2f022d36f84e0abce6439 (diff) | |
download | redot-engine-a77a0118f6b0d0878a53e2c963d91763b311163d.tar.gz |
Allow setting ip_type for TCP/UDP and HTTP classes
Diffstat (limited to 'scene/main/http_request.cpp')
-rw-r--r-- | scene/main/http_request.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/main/http_request.cpp b/scene/main/http_request.cpp index 4b6cbde859..4667812312 100644 --- a/scene/main/http_request.cpp +++ b/scene/main/http_request.cpp @@ -28,6 +28,10 @@ /*************************************************************************/ #include "http_request.h" +void HTTPRequest::set_ip_type(IP::Type p_type) { + client->set_ip_type(p_type); +} + void HTTPRequest::_redirect_request(const String& p_new_url) { |