Index: source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.cpp
===================================================================
--- source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.cpp	(revision 4896)
+++ source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.cpp	(revision 4900)
@@ -344,4 +344,7 @@
 	string name, info1, info2, info3;
 	name.reserve(256);
+	info1.reserve(256);
+	info2.reserve(256);
+	info3.reserve(256);
 
 	// connect to the SDP server running on the remote machine
@@ -379,4 +382,10 @@
 				sdp_list_free(proto_list, 0);
 
+				sdp_get_string_attr(rec, SDP_ATTR_SPOVNET_NAME, (char*)name.data(), name.size());
+				sdp_get_string_attr(rec, SDP_ATTR_SPOVNET_INFO1, (char*)info1.data(), info1.size());
+				sdp_get_string_attr(rec, SDP_ATTR_SPOVNET_INFO2, (char*)info2.data(), info2.size());
+				sdp_get_string_attr(rec, SDP_ATTR_SPOVNET_INFO3, (char*)info3.data(), info3.size());
+
+				std::cout << "Remote peer name is: " << name;
 				//TODO: callback here + extract info's and stuff
 			}
