Index: /source/ariba/SideportListener.cpp
===================================================================
--- /source/ariba/SideportListener.cpp	(revision 5780)
+++ /source/ariba/SideportListener.cpp	(revision 5781)
@@ -126,8 +126,11 @@
 		ret |= SideportListener::tcp;
 
-		if( tcpip.address().is_v4() || tcpip.address().is_v4_mapped() )
+		if( tcpip.address().is_v4() || tcpip.address().is_v4_mapped() ){
 			ret |= SideportListener::ipv4;
-		else if( tcpip.address().is_v6() )
+			cout << "address " << tcpip.address().to_string() << " is v4" << std::endl;
+		}else if( tcpip.address().is_v6() ){
 			ret |= SideportListener::ipv6;
+			cout << "address " << tcpip.address().to_string() << " is v6" << std::endl;
+		}
 
 	}else if( locator->instanceof<rfcomm_endpoint>() ){
