|
From: Olov H. <ol...@us...> - 2001-07-10 12:54:20
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bluetooth.c 1.186 1.187=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Added support to set max number of BT connections
The diff of the modified file(s):
--- bluetooth.c 2001/06/29 10:46:29 1.186
+++ bluetooth.c 2001/07/10 12:54:20 1.187
@@ -1055,6 +1055,20 @@
return 0;
}
=20
+ /* Set max number of connections */
+ case BTSETMAXCONNECTIONS :
+ {
+ u8 max_connections;
+
+ GET_USER(tmp, (s32*)arg);
+
+ max_connections =3D (u8)(tmp & 0xff);
+=09=09
+ BT_DRIVER("BTSETMAXCONNECTIONS : %d\n", max_connections);
+ hci_set_max_connections(max_connections);
+ return 0;
+ }
+
case BTSETBCSPMODE :
{
u8 enable;
|