diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2016-10-29 03:30:59 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2016-10-30 17:46:05 +0100 |
commit | 7eef15b73460062e4558857969919313e461f1e4 (patch) | |
tree | b2d291a30ad5f6680a8ad74cf8e46116da32c283 /core/io/tcp_server.cpp | |
parent | eb27e993f0f2fb3de48b7b8aa01c74cc1635a178 (diff) | |
download | redot-engine-7eef15b73460062e4558857969919313e461f1e4.tar.gz |
Set proper ip_type default for listen() and resolve_hostname()
Diffstat (limited to 'core/io/tcp_server.cpp')
-rw-r--r-- | core/io/tcp_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/tcp_server.cpp b/core/io/tcp_server.cpp index 53d6e900f3..894cccf691 100644 --- a/core/io/tcp_server.cpp +++ b/core/io/tcp_server.cpp @@ -58,7 +58,7 @@ Error TCP_Server::_listen(uint16_t p_port, IP_Address::AddrType p_type, DVector< void TCP_Server::_bind_methods() { - ObjectTypeDB::bind_method(_MD("listen","port","accepted_hosts"),&TCP_Server::_listen,DEFVAL(IP_Address::TYPE_IPV4), DEFVAL(DVector<String>())); + ObjectTypeDB::bind_method(_MD("listen","port","ip_type", "accepted_hosts"),&TCP_Server::_listen,DEFVAL(IP_Address::TYPE_ANY),DEFVAL(DVector<String>())); ObjectTypeDB::bind_method(_MD("is_connection_available"),&TCP_Server::is_connection_available); ObjectTypeDB::bind_method(_MD("take_connection"),&TCP_Server::take_connection); ObjectTypeDB::bind_method(_MD("stop"),&TCP_Server::stop); |