|
From: Marcus A. S. <mar...@us...> - 2001-03-01 00:29:53
|
The following file was modified in apps/bluetooth/btd:
Name Old version New version Comment
---- ----------- ----------- -------
btd.c 1.79 1.80=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Added SDP client support.
The diff of the modified file(s):
--- btd.c 2001/02/27 16:41:46 1.79
+++ btd.c 2001/03/01 00:31:05 1.80
@@ -1472,7 +1472,7 @@
tmp_bd[0], tmp_bd[1], tmp_bd[2],
tmp_bd[3], tmp_bd[4], tmp_bd[5]);
=20
- sdp_connect_req(tmp_bd);
+ sdp_connect_req(tmp_bd, 0);
}
else if(sscanf(buf, "test_conn %x:%x:%x:%x:%x:%x %x",
&bd[0], &bd[1], &bd[2], &bd[3], &bd[4], &bd[5], &tmp[0]) =3D=3D 7)
@@ -2312,6 +2312,16 @@
test_rfcomm =3D rfcomm;
test_dlci =3D dlci;
return 0;
+}
+
+int bt_register_sdp(u8 line)
+{
+ return 0;
+}
+=20
+int bt_unregister_sdp(u8 line)
+{
+ return 0;
}
=20
int bt_initiated(void)
|