@@ -150,6 +150,7 @@ static struct lookup_table l2cap_modes[] = {
*/
{ "ertm", L2CAP_MODE_ERTM },
{ "streaming", L2CAP_MODE_STREAMING },
+ { "ext-flowctl",L2CAP_MODE_EXT_FLOWCTL },
{ 0 }
};
@@ -283,7 +284,7 @@ static int getopts(int sk, struct l2cap_options *opts, bool connected)
memset(opts, 0, sizeof(*opts));
- if (bdaddr_type == BDADDR_BREDR) {
+ if (bdaddr_type == BDADDR_BREDR || rfcmode) {
optlen = sizeof(*opts);
return getsockopt(sk, SOL_L2CAP, L2CAP_OPTIONS, opts, &optlen);
}
@@ -303,6 +304,13 @@ static int setopts(int sk, struct l2cap_options *opts)
return setsockopt(sk, SOL_L2CAP, L2CAP_OPTIONS, opts,
sizeof(*opts));
+ if (opts->mode) {
+ if (setsockopt(sk, SOL_BLUETOOTH, BT_MODE, &opts->mode,
+ sizeof(opts->mode)) < 0) {
+ return -errno;
+ }
+ }
+
return setsockopt(sk, SOL_BLUETOOTH, BT_RCVMTU, &opts->imtu,
sizeof(opts->imtu));
}
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This enables using l2test to connect or listen with L2CAP_EXT_FLOWCTL_MODE. --- tools/l2test.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-)