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:
@ -60,13 +60,13 @@ protected:
|
||||
public:
|
||||
|
||||
virtual void set_ip_type(IP::Type p_type);
|
||||
virtual Error connect(const IP_Address& p_host, uint16_t p_port)=0;
|
||||
virtual Error connect_to_host(const IP_Address& p_host, uint16_t p_port)=0;
|
||||
|
||||
//read/write from streampeer
|
||||
|
||||
virtual bool is_connected() const=0;
|
||||
virtual bool is_connected_to_host() const=0;
|
||||
virtual Status get_status() const=0;
|
||||
virtual void disconnect()=0;
|
||||
virtual void disconnect_from_host()=0;
|
||||
virtual IP_Address get_connected_host() const=0;
|
||||
virtual uint16_t get_connected_port() const=0;
|
||||
virtual void set_nodelay(bool p_enabled)=0;
|
||||
|
||||
Reference in New Issue
Block a user