diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2006-11-01 12:58:31 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2006-11-01 12:58:31 +0000 |
commit | 1badf196a83fb8d32e212c49b7487b08962c18f0 (patch) | |
tree | b59e058454dd96d7196733482b3facae5b24a6e5 /hcid/dbus-hci.h | |
parent | c31fef0ff07c09edb9df8b0abcab9a9e828627a1 (diff) |
More cleanup. Move common dbus stuff to common/dbus.c. hcid/dbus.c -> hcid/dbus-hci.c
Diffstat (limited to 'hcid/dbus-hci.h')
-rw-r--r-- | hcid/dbus-hci.h | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/hcid/dbus-hci.h b/hcid/dbus-hci.h new file mode 100644 index 00000000..56572b35 --- /dev/null +++ b/hcid/dbus-hci.h @@ -0,0 +1,83 @@ +/* + * + * 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 __H_BLUEZ_DBUS_HCI_H__ +#define __H_BLUEZ_DBUS_HCI_H__ + +#include <dbus/dbus.h> +#include "dbus-adapter.h" + +void hcid_dbus_set_experimental(); +int hcid_dbus_use_experimental(); +int hcid_dbus_register_device(uint16_t id); +int hcid_dbus_unregister_device(uint16_t id); +int hcid_dbus_start_device(uint16_t id); +int hcid_dbus_stop_device(uint16_t id); +void hcid_dbus_pending_pin_req_add(bdaddr_t *sba, bdaddr_t *dba); +int hcid_dbus_request_pin(int dev, bdaddr_t *sba, struct hci_conn_info *ci); +int hcid_dbus_confirm_pin(int dev, bdaddr_t *sba, struct hci_conn_info *ci, char *pin); + +void hcid_dbus_inquiry_start(bdaddr_t *local); +void hcid_dbus_inquiry_complete(bdaddr_t *local); +void hcid_dbus_periodic_inquiry_start(bdaddr_t *local, uint8_t status); +void hcid_dbus_periodic_inquiry_exit(bdaddr_t *local, uint8_t status); +void hcid_dbus_inquiry_result(bdaddr_t *local, bdaddr_t *peer, uint32_t class, int8_t rssi, uint8_t *data); +void hcid_dbus_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class); +void hcid_dbus_remote_name(bdaddr_t *local, bdaddr_t *peer, uint8_t status, char *name); +void hcid_dbus_conn_complete(bdaddr_t *local, uint8_t status, uint16_t handle, bdaddr_t *peer); +void hcid_dbus_disconn_complete(bdaddr_t *local, uint8_t status, uint16_t handle, uint8_t reason); +void hcid_dbus_bonding_process_complete(bdaddr_t *local, bdaddr_t *peer, uint8_t status); +void hcid_dbus_setname_complete(bdaddr_t *local); +void hcid_dbus_setscan_enable_complete(bdaddr_t *local); +void hcid_dbus_pin_code_reply(bdaddr_t *local, void *ptr); + +int unregister_adapter_path(const char *path); + +DBusMessage *dev_signal_factory(int devid, const char *prop_name, int first, ...); + +DBusMessage *new_authentication_return(DBusMessage *msg, uint8_t status); + +int get_default_dev_id(void); + +void create_bond_req_exit(const char *name, struct adapter *adapter); +void discover_devices_req_exit(const char *name, struct adapter *adapter); +int cancel_discovery(struct adapter *adapter); +void periodic_discover_req_exit(const char *name, struct adapter *adapter); +int cancel_periodic_discovery(struct adapter *adapter); + +int active_conn_find_by_bdaddr(const void *data, const void *user_data); +void bonding_request_free(struct bonding_request_info *dev); +int pin_req_cmp(const void *p1, const void *p2); +int found_device_cmp(const struct remote_dev_info *d1, + const struct remote_dev_info *d2); +int found_device_add(struct slist **list, bdaddr_t *bdaddr, int8_t rssi, + name_status_t name_status); +int found_device_req_name(struct adapter *dbus_data); + +int discov_timeout_handler(void *data); + +void set_dbus_connection(DBusConnection *conn); + +DBusConnection *get_dbus_connection(void); + +#endif /* __H_BLUEZ_DBUS_HCI_H__ */ |