|
From: Peter K. <pk...@us...> - 2001-03-06 11:03:44
|
The following files were modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
sdp.h 1.24 1.25=20=20=20=20=20=20=20=20=20=20=20=20
sec_client.h 1.6 1.7=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Added prototypes for sdp_create_proc_file(), sdp_remove_proc_file(),
sec_man_create_proc_file() and sec_man_remove_proc_file().
The diff of the modified file(s):
--- sdp.h 2001/03/01 00:31:05 1.24
+++ sdp.h 2001/03/06 11:05:23 1.25
@@ -76,6 +76,10 @@
=20
void sdp_init(s32 server);
void sdp_shutdown(void);
+#ifdef __KERNEL__
+s32 sdp_create_proc_file(void);
+s32 sdp_remove_proc_file(void);
+#endif
s32 sdp_connect_req(u8* bd_addr, u8 line);
void sdp_connect_ind(l2cap_con *l2cap);
void sdp_connect_pnd(l2cap_con *l2cap, int status);
--- sec_client.h 2001/02/15 16:28:47 1.6
+++ sec_client.h 2001/03/06 11:05:23 1.7
@@ -76,6 +76,11 @@
=20
void sec_man_init(enum security_requests user);
=20
+#ifdef __KERNEL__
+s32 sec_man_create_proc_file(void);
+s32 sec_man_remove_proc_file(void);
+#endif
+
void sec_man_check(enum security_requests user, BD_ADDR bd_addr,
u32 service_data, u32 user_data);
=20
|