Exemple #1
0
	void TcpConnection::getHostName(){
		if(hostName.empty()){
			ASIO::ip::address addr = socket_.remote_endpoint().address();
			hostName = addr.to_string();
			_MAKE_IP(hostName);
		}
	}
void GstVideoServer::sendToClient( const osc::Message &m, const asio::ip::address &address )
{
    sendToClient(m,address.to_string());
}