diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-01-14 00:54:21 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-01-14 00:54:21 -0300 |
commit | 6c512b88c22cb9615a03deb000447e97c20c7080 (patch) | |
tree | 44e9bd077f65d793e24f5d3b2862ae13e39f8556 /drivers/unix/packet_peer_udp_posix.h | |
parent | d9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6 (diff) | |
download | redot-engine-6c512b88c22cb9615a03deb000447e97c20c7080.tar.gz |
UDP.set_send_address to UDP.set_dest_address
Diffstat (limited to 'drivers/unix/packet_peer_udp_posix.h')
-rw-r--r-- | drivers/unix/packet_peer_udp_posix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/packet_peer_udp_posix.h b/drivers/unix/packet_peer_udp_posix.h index 89b8886cf5..ead7174a9d 100644 --- a/drivers/unix/packet_peer_udp_posix.h +++ b/drivers/unix/packet_peer_udp_posix.h @@ -73,7 +73,7 @@ public: virtual IP_Address get_packet_address() const; virtual int get_packet_port() const; - virtual void set_send_address(const IP_Address& p_address,int p_port); + virtual void set_dest_address(const IP_Address& p_address,int p_port); static void make_default(); |