You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-17 14:11:06 +00:00
removed duplicated functions in class hierarchy that were bound more than once
added a check to detect this case in the future
This commit is contained in:
@@ -59,7 +59,7 @@ protected:
|
||||
|
||||
public:
|
||||
|
||||
virtual Error connect(const IP_Address& p_host, uint16_t p_port);
|
||||
virtual Error connect_to_host(const IP_Address& p_host, uint16_t p_port);
|
||||
|
||||
virtual Error put_data(const uint8_t* p_data,int p_bytes);
|
||||
virtual Error put_partial_data(const uint8_t* p_data,int p_bytes, int &r_sent);
|
||||
@@ -74,9 +74,9 @@ public:
|
||||
virtual IP_Address get_connected_host() const;
|
||||
virtual uint16_t get_connected_port() const;
|
||||
|
||||
virtual bool is_connected() const;
|
||||
virtual bool is_connected_to_host() const;
|
||||
virtual Status get_status() const;
|
||||
virtual void disconnect();
|
||||
virtual void disconnect_from_host();
|
||||
|
||||
virtual void set_nodelay(bool p_enabled);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user