diff -r 14e279d2bbb7 -r 22de2e391156 bluetooth/btsdp/server/protocol/listener.cpp --- a/bluetooth/btsdp/server/protocol/listener.cpp Wed Jul 21 15:42:05 2010 +0300 +++ b/bluetooth/btsdp/server/protocol/listener.cpp Thu Sep 23 17:06:47 2010 +0300 @@ -1,4 +1,4 @@ -// Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). +// Copyright (c) 2000-2010 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of "Eclipse Public License v1.0" @@ -466,6 +466,10 @@ addr.SetSecurity(sdpSecurity); User::LeaveIfError(iListener.Bind(addr)); + TPckgBuf noSecurityRequired; + noSecurityRequired() = ETrue; + + User::LeaveIfError(iListener.SetOpt(KBTSetNoSecurityRequired, KSolBtSAPBase, noSecurityRequired)); User::LeaveIfError(iListener.Listen(iQueSize)); }