From: Marcel Holtmann Date: Fri, 11 Jul 2008 03:00:37 +0000 (+0000) Subject: Make sure to actually set the link mode option X-Git-Tag: android-x86-2.2~1587^2~8 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=93f86d24ccd3e1a589a2762e1a424cf7cc70e740;p=android-x86%2Fexternal-bluetooth-bluez.git Make sure to actually set the link mode option --- diff --git a/test/rctest.c b/test/rctest.c index 2da87f71d..08620d4ea 100644 --- a/test/rctest.c +++ b/test/rctest.c @@ -148,6 +148,12 @@ static int do_connect(char *svr) if (secure) opt |= RFCOMM_LM_SECURE; + if (opt && setsockopt(sk, SOL_RFCOMM, RFCOMM_LM, &opt, sizeof(opt)) < 0) { + syslog(LOG_ERR, "Can't set RFCOMM link mode: %s (%d)", + strerror(errno), errno); + goto error; + } + /* Connect to remote device */ memset(&addr, 0, sizeof(addr)); addr.rc_family = AF_BLUETOOTH;