diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2016-10-31 08:00:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-31 08:00:54 +0100 |
commit | 434d120226c31fea9c1ff905c37486d6ed58633a (patch) | |
tree | f3d69229c6c14f8b5e84337b3ac8ad0f470e5548 /core/io/packet_peer_udp.h | |
parent | de454318e72f5de13c5a1efff5811d41e360a8a2 (diff) | |
parent | bdc7ca84cac727f3f94663f23e1229450230bd2e (diff) |
Merge pull request #6981 from Faless/ipv6_fix
Use IPv6 dual stack socket by default. Allow restricting IP version for TCP/UDP.
Diffstat (limited to 'core/io/packet_peer_udp.h')
-rw-r--r-- | core/io/packet_peer_udp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/packet_peer_udp.h b/core/io/packet_peer_udp.h index c0806a9e6a..37e700cebd 100644 --- a/core/io/packet_peer_udp.h +++ b/core/io/packet_peer_udp.h @@ -42,11 +42,11 @@ protected: String _get_packet_ip() const; - virtual Error _set_send_address(const String& p_address,int p_port); + virtual Error _set_send_address(const String& p_address,int p_port, IP_Address::AddrType p_address_type = IP_Address::TYPE_ANY); public: - virtual Error listen(int p_port, IP_Address::AddrType p_address_type = IP_Address::TYPE_IPV4, int p_recv_buffer_size=65536)=0; + virtual Error listen(int p_port, IP_Address::AddrType p_address_type = IP_Address::TYPE_ANY, int p_recv_buffer_size=65536)=0; virtual void close()=0; virtual Error wait()=0; virtual bool is_listening() const=0; |