summaryrefslogtreecommitdiffstats
path: root/hcid/dbus-adapter.h
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2006-10-30 18:39:38 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2006-10-30 18:39:38 +0000
commite54736f31acc8d26d1f1e4a8b06ed66d258a24ef (patch)
tree44c92453396549e9b82934ed7f1fa30f1d2a93a6 /hcid/dbus-adapter.h
parentc9b2f56a13df506191c284b7977abe7e7aa8f0e5 (diff)
Cleanup: split dbus.h into several dbus-*.h files (one for each dbus-*.c file)
Diffstat (limited to 'hcid/dbus-adapter.h')
-rw-r--r--hcid/dbus-adapter.h115
1 files changed, 115 insertions, 0 deletions
diff --git a/hcid/dbus-adapter.h b/hcid/dbus-adapter.h
new file mode 100644
index 00000000..3c21c179
--- /dev/null
+++ b/hcid/dbus-adapter.h
@@ -0,0 +1,115 @@
+/*
+ *
+ * BlueZ - Bluetooth protocol stack for Linux
+ *
+ * Copyright (C) 2004-2006 Marcel Holtmann <marcel@holtmann.org>
+ *
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __ADAPTER_H
+#define __ADAPTER_H
+
+#include <dbus/dbus.h>
+#include "list.h"
+#include "glib-ectomy.h"
+
+#define ADAPTER_INTERFACE "org.bluez.Adapter"
+
+#define INVALID_DEV_ID 0xFFFF
+
+#define BONDING_TIMEOUT 45000 /* 45 sec */
+
+/* Discover types */
+#define DISCOVER_TYPE_NONE 0x00
+#define STD_INQUIRY 0x01
+#define PERIODIC_INQUIRY 0x02
+
+/* Actions executed after inquiry complete */
+#define RESOLVE_NAME 0x10
+
+typedef enum {
+ NAME_ANY,
+ NAME_NOT_REQUIRED, /* used by get remote name without name resolving */
+ NAME_REQUIRED, /* remote name needs be resolved */
+ NAME_REQUESTED, /* HCI remote name request was sent */
+ NAME_SENT /* D-Bus signal RemoteNameUpdated sent */
+} name_status_t;
+
+struct remote_dev_info {
+ bdaddr_t bdaddr;
+ int8_t rssi;
+ name_status_t name_status;
+};
+
+struct bonding_request_info {
+ bdaddr_t bdaddr;
+ DBusConnection *conn;
+ DBusMessage *rq;
+ GIOChannel *io;
+ guint io_id;
+ int hci_status;
+ int cancel;
+ int auth_active;
+};
+
+struct pending_pin_info {
+ bdaddr_t bdaddr;
+ int replied; /* If we've already replied to the request */
+};
+
+struct active_conn_info {
+ bdaddr_t bdaddr;
+ uint16_t handle;
+};
+
+struct adapter {
+ uint16_t dev_id;
+ int up;
+ char address[18]; /* adapter Bluetooth Address */
+ guint timeout_id; /* discoverable timeout id */
+ uint32_t discov_timeout; /* discoverable time(msec) */
+ uint8_t mode; /* scan mode */
+ int discov_active; /* standard discovery active: includes name resolution step */
+ int pdiscov_active; /* periodic discovery active */
+ int pinq_idle; /* tracks the idle time for periodic inquiry */
+ int discov_type; /* type requested */
+ int pdiscov_resolve_names; /* Resolve names when doing periodic discovery */
+ struct slist *found_devices;
+ struct slist *oor_devices; /* out of range device list */
+ char *pdiscov_requestor; /* periodic discovery requestor unique name */
+ char *discov_requestor; /* discovery requestor unique name */
+ DBusMessage *discovery_cancel; /* discovery cancel message request */
+ struct slist *passkey_agents;
+ struct slist *auth_agents; /* Authorization agents */
+ bdaddr_t agents_disabled; /* temporarely disable agents for bda */
+ struct slist *active_conn;
+ struct bonding_request_info *bonding;
+ struct slist *pin_reqs;
+};
+
+DBusHandlerResult handle_adapter_method(DBusConnection *conn, DBusMessage *msg, void *data);
+
+const char *major_class_str(uint32_t class);
+
+const char *minor_class_str(uint32_t class);
+
+struct slist *service_classes_str(uint32_t class);
+
+int pending_remote_name_cancel(struct adapter *adapter);
+
+#endif /* __ADAPTER_H */