diff options
| author | Rémi Verschelde | 2017-12-16 20:34:16 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2017-12-16 21:08:31 +0100 |
| commit | d03f35f1bc0ecf09d436ebb44356f8add5b95a3e (patch) | |
| tree | e6f9cd25ec25e9fe0dbbd2618491208be47423c4 /doc/classes/HTTPClient.xml | |
| parent | db22aec51a86a562d167eeaadcd8b57bc89c9a88 (diff) | |
| download | godot-d03f35f1bc0ecf09d436ebb44356f8add5b95a3e.tar.gz godot-d03f35f1bc0ecf09d436ebb44356f8add5b95a3e.tar.zst godot-d03f35f1bc0ecf09d436ebb44356f8add5b95a3e.zip | |
Bind TextEdit.deselect and update documentation
Diffstat (limited to 'doc/classes/HTTPClient.xml')
| -rw-r--r-- | doc/classes/HTTPClient.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/HTTPClient.xml b/doc/classes/HTTPClient.xml index 9d4b45a8d..80f6966e1 100644 --- a/doc/classes/HTTPClient.xml +++ b/doc/classes/HTTPClient.xml @@ -26,7 +26,7 @@ </return> <argument index="0" name="host" type="String"> </argument> - <argument index="1" name="port" type="int"> + <argument index="1" name="port" type="int" default="-1"> </argument> <argument index="2" name="use_ssl" type="bool" default="false"> </argument> @@ -35,6 +35,7 @@ <description> Connect to a host. This needs to be done before any requests are sent. The host should not have http:// prepended but will strip the protocol identifier if provided. + If no [code]port[/code] is specified (or [code]-1[/code] is used), it is automatically set to 80 for HTTP and 443 for HTTPS (if [code]use_ssl[/code] is enabled). [code]verify_host[/code] will check the SSL identity of the host if set to [code]true[/code]. </description> </method> |
