From 81bfc8233f38885c8839aa30c74814ba828670fa Mon Sep 17 00:00:00 2001 From: Othmar Gsenger Date: Thu, 23 Apr 2009 12:04:05 +0000 Subject: sync race condition workarround --- src/connectionParam.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/connectionParam.h') diff --git a/src/connectionParam.h b/src/connectionParam.h index 80cf2aa..f929211 100644 --- a/src/connectionParam.h +++ b/src/connectionParam.h @@ -71,7 +71,7 @@ private: UDPPacketSource::proto::endpoint endpoint(boost::asio::ip::address::from_string(remote_host), remote_port); //This is a workarround, against race condition in sync process //TODO: find a better solution - if (endpoint != emptyEndpoint || remote_host == "::" || remote_host == "[::]" || remote_host == "0.0.0.0") + if (endpoint != emptyEndpoint && remote_host != "::" && remote_host != "[::]" && remote_host != "0.0.0.0") remote_end_ = endpoint; } }; -- cgit v1.2.3