summaryrefslogtreecommitdiffstats
path: root/hcid/server.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-03-12 19:21:33 +0000
committerMarcel Holtmann <marcel@holtmann.org>2008-03-12 19:21:33 +0000
commit9a3a941ae455e4481392fb3e5d6b87750d0d9609 (patch)
tree111b3c13c607e9640662b1a86c492b62a33af0c6 /hcid/server.h
parentcf551c7e70305a99064362b048ef1ccb2da07aa9 (diff)
Hook up server probe/remove callbacks
Diffstat (limited to 'hcid/server.h')
-rw-r--r--hcid/server.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/hcid/server.h b/hcid/server.h
index 5c0f86dc..f60ab88b 100644
--- a/hcid/server.h
+++ b/hcid/server.h
@@ -23,6 +23,8 @@
struct bt_server {
const char *uuid;
+ int (*probe) (const char *adapter);
+ void (*remove) (const char *adapter);
};
int bt_register_server(struct bt_server *server);