diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-01-02 15:51:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-02 15:51:45 +0100 |
commit | 0b2771bd6561152cdb0e650538a572a242068f01 (patch) | |
tree | b44c1ab2d50f14521cb7d9cafcee37b551871c66 /core/io/packet_peer_udp.h | |
parent | 6428ebd91faa757aff419e3f6d1ccc63b699dd11 (diff) | |
parent | d194e1c48e5d161f0310ee17e63f1951e2c50de6 (diff) |
Merge pull request #7271 from Faless/ipv6_cleanup
Fixes and improvementes for IPv6 implementation.
Diffstat (limited to 'core/io/packet_peer_udp.h')
-rw-r--r-- | core/io/packet_peer_udp.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/io/packet_peer_udp.h b/core/io/packet_peer_udp.h index 82205672ec..5f80ea08fc 100644 --- a/core/io/packet_peer_udp.h +++ b/core/io/packet_peer_udp.h @@ -30,6 +30,7 @@ #define PACKET_PEER_UDP_H +#include "io/ip.h" #include "io/packet_peer.h" class PacketPeerUDP : public PacketPeer { @@ -37,16 +38,19 @@ class PacketPeerUDP : public PacketPeer { protected: + IP::Type ip_type; + static PacketPeerUDP* (*_create)(); static void _bind_methods(); String _get_packet_ip() const; - virtual Error _set_send_address(const String& p_address,int p_port, IP_Address::AddrType p_address_type = IP_Address::TYPE_ANY); + virtual Error _set_send_address(const String& p_address,int p_port); public: - 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 set_ip_type(IP::Type p_type); + virtual Error listen(int p_port, int p_recv_buffer_size=65536)=0; virtual void close()=0; virtual Error wait()=0; virtual bool is_listening() const=0; |