소스 검색

Fix some broken logic in Path::reliable()

Adam Ierymenko 10 년 전
부모
커밋
0b2e5ed499
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      node/Path.hpp

+ 3 - 1
node/Path.hpp

@@ -114,7 +114,9 @@ public:
 	 */
 	inline bool reliable() const throw()
 	{
-		return ( (_addr.ss_family == AF_INET6) || ((_ipScope != InetAddress::IP_SCOPE_GLOBAL)&&(_ipScope != InetAddress::IP_SCOPE_PSEUDOPRIVATE)) );
+		if (_addr.ss_family == AF_INET)
+			return ((_ipScope != InetAddress::IP_SCOPE_GLOBAL)&&(_ipScope != InetAddress::IP_SCOPE_PSEUDOPRIVATE));
+		return true;
 	}
 
 	/**